diff options
author | Unknwon <u@gogs.io> | 2017-02-18 23:04:11 -0500 |
---|---|---|
committer | Unknwon <u@gogs.io> | 2017-02-18 23:04:11 -0500 |
commit | 50a7c3c20df2a57a72d76b2e3850e3eada3df80d (patch) | |
tree | ea8c707c905949bbf36e5d73943af3c4b4f18ee3 /templates/repo/header.tmpl | |
parent | c3f52ab52dafe351dd30b12df48d48fb930993f7 (diff) |
repo: able to fork own repository (#1791)
Diffstat (limited to 'templates/repo/header.tmpl')
-rw-r--r-- | templates/repo/header.tmpl | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/templates/repo/header.tmpl b/templates/repo/header.tmpl index 69842d73..fe3f30d6 100644 --- a/templates/repo/header.tmpl +++ b/templates/repo/header.tmpl @@ -32,7 +32,7 @@ </div> {{if .CanBeForked}} <div class="ui labeled button" tabindex="0"> - <a class="ui button {{if eq .OwnerID $.SignedUserID}}poping up{{end}}" {{if not (eq .OwnerID $.SignedUserID)}}href="{{AppSubUrl}}/repo/fork/{{.ID}}"{{else}} data-content="{{$.i18n.Tr "repo.fork_from_self"}}" data-position="top center" data-variation="tiny"{{end}}> + <a class="ui button {{if eq .OwnerID $.SignedUserID}}poping up{{end}}" href="{{AppSubUrl}}/repo/fork/{{.ID}}"> <i class="octicon octicon-repo-forked"></i>{{$.i18n.Tr "repo.fork"}} </a> <a class="ui basic label" href="{{.Link}}/forks"> |