diff --git a/options/locale/locale_en-US.ini b/options/locale/locale_en-US.ini index d10f4c24784..365b598accd 100644 --- a/options/locale/locale_en-US.ini +++ b/options/locale/locale_en-US.ini @@ -1647,6 +1647,7 @@ diff.review.placeholder = Review comment diff.review.comment = Comment diff.review.approve = Approve diff.review.reject = Request changes +diff.committed_by = committed by releases.desc = Track project versions and downloads. release.releases = Releases diff --git a/templates/repo/commit_page.tmpl b/templates/repo/commit_page.tmpl index f884bee7bef..dde87c08d18 100644 --- a/templates/repo/commit_page.tmpl +++ b/templates/repo/commit_page.tmpl @@ -31,7 +31,7 @@
-
+
{{if .Author}} {{if .Author.FullName}} @@ -43,19 +43,22 @@ {{.Commit.Author.Name}} {{end}} + {{TimeSince .Commit.Author.When $.Lang}} {{if or (ne .Commit.Committer.Name .Commit.Author.Name) (ne .Commit.Committer.Email .Commit.Author.Email)}} - - {{if ne .Verification.CommittingUser.ID 0}} - - {{.Commit.Committer.Name}} <{{.Commit.Committer.Email}}> - {{else}} - - {{.Commit.Committer.Name}} - {{end}} +
+ {{svg "octicon-git-commit" 16}}{{.i18n.Tr "repo.diff.committed_by"}} + {{if ne .Verification.CommittingUser.ID 0}} + + {{.Commit.Committer.Name}} <{{.Commit.Committer.Email}}> + {{else}} + + {{.Commit.Committer.Name}} + {{end}} +
{{end}} - {{TimeSince .Commit.Author.When $.Lang}} +
-
+
{{if .Parents}}
diff --git a/web_src/less/_repository.less b/web_src/less/_repository.less index b1e1d663433..7437ac8fe8e 100644 --- a/web_src/less/_repository.less +++ b/web_src/less/_repository.less @@ -2293,6 +2293,24 @@ } } } + + &.diff .committed-by { + padding-top: .5rem; + + .ui.avatar { + width: 20px; + height: 20px; + } + + span { + margin-right: .25rem; + + svg { + vertical-align: text-bottom; + margin-right: 2px; + } + } + } } // End of .repository