diff options
author | 无闻 <u@gogs.io> | 2015-08-10 22:43:35 +0800 |
---|---|---|
committer | 无闻 <u@gogs.io> | 2015-08-10 22:43:35 +0800 |
commit | 2edb82c4205334075420aae53744394757f1751f (patch) | |
tree | dcdf4ae1b0d74370e0edca944d37c56fe578959f | |
parent | 471431e87c223ff553c6df33ca8b01363bc6a06d (diff) | |
parent | b2bd6c4c5a0e26443282e683427680a5913caaa6 (diff) |
Merge pull request #1461 from jamesa/fix-collaboration-link
Fix broken collaboration link in repo settings
-rw-r--r-- | templates/repo/settings/navbar.tmpl | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/templates/repo/settings/navbar.tmpl b/templates/repo/settings/navbar.tmpl index 1001c3a2..a92f891e 100644 --- a/templates/repo/settings/navbar.tmpl +++ b/templates/repo/settings/navbar.tmpl @@ -4,7 +4,7 @@ <a class="{{if .PageIsSettingsOptions}}active{{end}} item" href="{{.RepoLink}}/settings"> {{.i18n.Tr "repo.settings.options"}} </a> - <a class="{{if .PageIsSettingsCollaboration}}active{{end}} item" href="{.RepoLink}}/settings/collaboration"> + <a class="{{if .PageIsSettingsCollaboration}}active{{end}} item" href="{{.RepoLink}}/settings/collaboration"> {{.i18n.Tr "repo.settings.collaboration"}} </a> <a class="{{if .PageIsSettingsHooks}}active{{end}} item" href="{{.RepoLink}}/settings/hooks"> @@ -17,4 +17,4 @@ {{.i18n.Tr "repo.settings.deploy_keys"}} </a> </div> -</div>
\ No newline at end of file +</div> |