diff options
-rw-r--r-- | templates/repo/branch/list.tmpl | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/templates/repo/branch/list.tmpl b/templates/repo/branch/list.tmpl index bc00d0d717..cd6afce912 100644 --- a/templates/repo/branch/list.tmpl +++ b/templates/repo/branch/list.tmpl @@ -38,10 +38,10 @@ <tr> <td> {{if .IsDeleted}} - <s>{{.Name}}</s> + <s><a href="{{$.RepoLink}}/src/branch/{{.Name}}">{{.Name}}</a></s> <p class="time">{{$.i18n.Tr "repo.branch.deleted_by" .DeletedBranch.DeletedBy.Name}} {{TimeSinceUnix .DeletedBranch.DeletedUnix $.i18n.Lang}}</p> {{else}} - {{.Name}} + <a href="{{$.RepoLink}}/src/branch/{{.Name}}">{{.Name}}</a> <p class="time">{{$.i18n.Tr "org.repo_updated"}} {{TimeSince .Commit.Committer.When $.i18n.Lang}}</p> </td> {{end}} |