Browse Source

Fix usage of full names

pull/3808/head
Flare 8 years ago
parent
commit
1b965d111c
No known key found for this signature in database
GPG Key ID: 762EE3D369C1A772
  1. 2
      templates/repo/commits_table.tmpl
  2. 2
      templates/repo/view_list.tmpl

2
templates/repo/commits_table.tmpl

@ -30,7 +30,7 @@
<tr>
<td class="author">
{{if .User}}
<img class="ui avatar image" src="{{.User.RelAvatarLink}}" alt=""/>&nbsp;&nbsp;<a href="{{AppSubUrl}}/{{.User.Name}}">{{.User.Name}}</a>
<img class="ui avatar image" src="{{.User.RelAvatarLink}}" alt=""/>&nbsp;&nbsp;<a href="{{AppSubUrl}}/{{.User.Name}}">{{.User.FullName}}</a>
{{else}}
<img class="ui avatar image" src="{{AvatarLink .Author.Email}}" alt=""/>&nbsp;&nbsp;{{.Author.Name}}
{{end}}

2
templates/repo/view_list.tmpl

@ -4,7 +4,7 @@
<th class="four wide">
{{if .LatestCommitUser}}
<img class="ui avatar image img-12" src="{{.LatestCommitUser.RelAvatarLink}}" />
<a href="{{AppSubUrl}}/{{.LatestCommitUser.Name}}"><strong>{{.LatestCommitUser.Name}}</strong></a>
<a href="{{AppSubUrl}}/{{.LatestCommitUser.Name}}"><strong>{{.LatestCommitUser.FullName}}</strong></a>
{{else}}
<img class="ui avatar image img-12" src="{{AvatarLink .LatestCommit.Author.Email}}" />
<strong>{{.LatestCommit.Author.Name}}</strong>

Loading…
Cancel
Save