diff options
author | Unknown <joe2010xtmf@163.com> | 2014-03-19 23:20:55 -0400 |
---|---|---|
committer | Unknown <joe2010xtmf@163.com> | 2014-03-19 23:20:55 -0400 |
commit | a922c3ff6a65d6d0550f36d866a301a6737ca8a2 (patch) | |
tree | a7af095002f13ca5e60965df7287f0d3f4e82b6b /templates/repo/commits.tmpl | |
parent | 8b0f421eb504075b7500575515282cd7da8b0878 (diff) | |
download | gitea-a922c3ff6a65d6d0550f36d866a301a6737ca8a2.tar.gz gitea-a922c3ff6a65d6d0550f36d866a301a6737ca8a2.zip |
Watch backend
Diffstat (limited to 'templates/repo/commits.tmpl')
-rw-r--r-- | templates/repo/commits.tmpl | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/templates/repo/commits.tmpl b/templates/repo/commits.tmpl index 8b4e41f748..2e67a1200a 100644 --- a/templates/repo/commits.tmpl +++ b/templates/repo/commits.tmpl @@ -26,7 +26,7 @@ {{$r := List .Commits}} {{range $r}} <tr> - <td class="author"><img class="avatar" src="{{AvatarLink .Committer.Email}}" alt=""/>{{.Committer.Name}}</td> + <td class="author"><img class="avatar" src="{{AvatarLink .Committer.Email}}" alt=""/><a href="/user/{{.Committer.Name}}">{{.Committer.Name}}</a></td> <td class="sha"><a class="label label-success" href="/{{$username}}/{{$reponame}}/commit/{{.Id}} ">{{SubStr .Id.String 0 7}} </a></td> <td class="message">{{.Message}} </td> <td class="date">{{TimeSince .Committer.When}}</td> |