diff options
author | techknowlogick <techknowlogick@gitea.io> | 2020-08-05 03:49:12 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-08-05 15:49:12 +0800 |
commit | 13c4c7a13209d30504e9b9385a5098add9185095 (patch) | |
tree | f74cc462c1b2d9e18b6257446038b5d11029dd5b | |
parent | 6015d30dd615c70234cd4a4a9f6775966bf84b3a (diff) | |
download | gitea-13c4c7a13209d30504e9b9385a5098add9185095.tar.gz gitea-13c4c7a13209d30504e9b9385a5098add9185095.zip |
Match GH with Commit page (#12425) (#12431)
Co-authored-by: zeripath <art27@cantab.net>
Co-authored-by: zeripath <art27@cantab.net>
-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 dde87c08d1..16ab7a1750 100644 --- a/templates/repo/commit_page.tmpl +++ b/templates/repo/commit_page.tmpl @@ -35,9 +35,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}}" /> @@ -49,7 +49,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> @@ -94,7 +94,7 @@ <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}} <i class="icons" title="{{.i18n.Tr "gpg.default_key"}}"> @@ -103,7 +103,7 @@ </i> <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}} |