diff options
author | techknowlogick <techknowlogick@gitea.io> | 2020-08-04 21:32:13 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-08-05 09:32:13 +0800 |
commit | 6ab4d76ced00415bff636865e6b14c547bd357c8 (patch) | |
tree | a8c50f4e7c95bf561991e4d6e3057abfd5c1eed7 /templates/repo/commit_page.tmpl | |
parent | 33391e04feb6be1c2f8bec0928f500df0f110d89 (diff) | |
download | gitea-6ab4d76ced00415bff636865e6b14c547bd357c8.tar.gz gitea-6ab4d76ced00415bff636865e6b14c547bd357c8.zip |
Match GH with Commit page (#12425)
Co-authored-by: zeripath <art27@cantab.net>
Diffstat (limited to 'templates/repo/commit_page.tmpl')
-rw-r--r-- | templates/repo/commit_page.tmpl | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/templates/repo/commit_page.tmpl b/templates/repo/commit_page.tmpl index f9e8c4acb9..1d223d2ea2 100644 --- a/templates/repo/commit_page.tmpl +++ b/templates/repo/commit_page.tmpl @@ -40,9 +40,9 @@ {{if .Author}} <img class="ui avatar image" src="{{.Author.RelAvatarLink}}" /> {{if .Author.FullName}} - <a href="{{.Author.HomeLink}}"><strong>{{.Author.FullName}}</strong> {{if .IsSigned}}<{{.Commit.Author.Email}}>{{end}}</a> + <a href="{{.Author.HomeLink}}"><strong>{{.Author.FullName}}</strong></a> {{else}} - <a href="{{.Author.HomeLink}}"><strong>{{.Commit.Author.Name}}</strong> {{if .IsSigned}}<{{.Commit.Author.Email}}>{{end}}</a> + <a href="{{.Author.HomeLink}}"><strong>{{.Commit.Author.Name}}</strong></a> {{end}} {{else}} <img class="ui avatar image" src="{{AvatarLink .Commit.Author.Email}}" /> @@ -54,7 +54,7 @@ <span class="text grey">{{svg "octicon-git-commit" 16}}{{.i18n.Tr "repo.diff.committed_by"}}</span> {{if ne .Verification.CommittingUser.ID 0}} <img class="ui avatar image" src="{{.Verification.CommittingUser.RelAvatarLink}}" /> - <a href="{{.Verification.CommittingUser.HomeLink}}"><strong>{{.Commit.Committer.Name}}</strong> <{{.Commit.Committer.Email}}></a> + <a href="{{.Verification.CommittingUser.HomeLink}}"><strong>{{.Commit.Committer.Name}}</strong></a> {{else}} <img class="ui avatar image" src="{{AvatarLink .Commit.Committer.Email}}" /> <strong>{{.Commit.Committer.Name}}</strong> @@ -99,13 +99,13 @@ <span class="ui text">{{.i18n.Tr "repo.commits.signed_by_untrusted_user_unmatched"}}:</span> {{end}} <img class="ui avatar image" src="{{.Verification.SigningUser.RelAvatarLink}}" /> - <a href="{{.Verification.SigningUser.HomeLink}}"><strong>{{.Verification.SigningUser.Name}}</strong> <{{.Verification.SigningEmail}}></a> + <a href="{{.Verification.SigningUser.HomeLink}}"><strong>{{.Verification.SigningUser.Name}}</strong></a> <span class="pull-right"><span class="ui text">{{.i18n.Tr "repo.commits.gpg_key_id"}}:</span> {{.Verification.SigningKey.KeyID}}</span> {{else}} <span title="{{.i18n.Tr "gpg.default_key"}}">{{svg "gitea-lock-cog" 16}}</span> <span class="ui text">{{.i18n.Tr "repo.commits.signed_by"}}:</span> <img class="ui avatar image" src="{{AvatarLink .Verification.SigningEmail}}" /> - <strong>{{.Verification.SigningUser.Name}}</strong> <{{.Verification.SigningEmail}}> + <strong>{{.Verification.SigningUser.Name}}</strong> <span class="pull-right"><span class="ui text">{{.i18n.Tr "repo.commits.gpg_key_id"}}:</span> <i class="cogs icon" title="{{.i18n.Tr "gpg.default_key"}}"></i>{{.Verification.SigningKey.KeyID}}</span> {{end}} {{else if .Verification.Warning}} |