diff options
author | Download-Fritz <download-fritz@outlook.com> | 2016-02-19 20:33:06 +0100 |
---|---|---|
committer | Download-Fritz <download-fritz@outlook.com> | 2016-02-19 20:33:06 +0100 |
commit | a467184e13e4e3867031c191263dc0adaec2673c (patch) | |
tree | e01e62d7085e72e4a8f02142c1a5fe3571e56c4d /templates/repo | |
parent | 2fdf8fc938295b95cbe6efb7cddb1b87c2fb81ee (diff) | |
download | gitea-a467184e13e4e3867031c191263dc0adaec2673c.tar.gz gitea-a467184e13e4e3867031c191263dc0adaec2673c.zip |
#2505 Allow to fork and disallow to create PRs for mirrors.
Diffstat (limited to 'templates/repo')
-rw-r--r-- | templates/repo/header.tmpl | 2 | ||||
-rw-r--r-- | templates/repo/settings/options.tmpl | 16 |
2 files changed, 10 insertions, 8 deletions
diff --git a/templates/repo/header.tmpl b/templates/repo/header.tmpl index 3002ff4b38..34ef9fafa1 100644 --- a/templates/repo/header.tmpl +++ b/templates/repo/header.tmpl @@ -57,7 +57,7 @@ <i class="icon octicon octicon-issue-opened"></i> {{.i18n.Tr "repo.issues"}} <span class="ui {{if not .Repository.NumOpenIssues}}gray{{else}}blue{{end}} small label">{{.Repository.NumOpenIssues}}</span> </a> {{end}} - {{if .Repository.EnablePulls}} + {{if .Repository.AllowsPulls}} <a class="{{if .PageIsPullList}}active{{end}} item" href="{{.RepoLink}}/pulls"> <i class="icon octicon octicon-git-pull-request"></i> {{.i18n.Tr "repo.pulls"}} <span class="ui {{if not .Repository.NumOpenPulls}}gray{{else}}blue{{end}} small label">{{.Repository.NumOpenPulls}}</span> </a> diff --git a/templates/repo/settings/options.tmpl b/templates/repo/settings/options.tmpl index 985779fae3..977d841cf5 100644 --- a/templates/repo/settings/options.tmpl +++ b/templates/repo/settings/options.tmpl @@ -117,15 +117,17 @@ <p class="help">{{.i18n.Tr "repo.settings.tracker_url_format_desc" | Str2html}}</p> </div> - <div class="ui divider"></div> + {{if .Repository.CanEnablePulls}} + <div class="ui divider"></div> - <div class="inline field"> - <label>{{.i18n.Tr "repo.pulls"}}</label> - <div class="ui checkbox"> - <input name="enable_pulls" type="checkbox" {{if .Repository.EnablePulls}}checked{{end}}> - <label>{{.i18n.Tr "repo.settings.pulls_desc"}}</label> + <div class="inline field"> + <label>{{.i18n.Tr "repo.pulls"}}</label> + <div class="ui checkbox"> + <input name="enable_pulls" type="checkbox" {{if .Repository.EnablePulls}}checked{{end}}> + <label>{{.i18n.Tr "repo.settings.pulls_desc"}}</label> + </div> </div> - </div> + {{end}} <div class="ui divider"></div> <div class="field"> |