2022-05-16 16:45:12 +00:00
|
|
|
<div class="ui attached table segment commit-table">
|
2023-07-04 17:45:45 +00:00
|
|
|
<table class="ui very basic striped table unstackable" id="commits-table">
|
2019-11-01 22:02:41 +00:00
|
|
|
<thead>
|
|
|
|
<tr>
|
2023-09-25 13:15:51 +00:00
|
|
|
<th class="three wide">{{ctx.Locale.Tr "repo.commits.author"}}</th>
|
2019-11-01 22:02:41 +00:00
|
|
|
<th class="two wide sha">SHA1</th>
|
2023-09-25 13:15:51 +00:00
|
|
|
<th class="nine wide message">{{ctx.Locale.Tr "repo.commits.message"}}</th>
|
|
|
|
<th class="two wide right aligned">{{ctx.Locale.Tr "repo.commits.date"}}</th>
|
2019-11-01 22:02:41 +00:00
|
|
|
</tr>
|
|
|
|
</thead>
|
|
|
|
<tbody class="commit-list">
|
2022-01-18 16:12:10 +00:00
|
|
|
{{$commitRepoLink := $.RepoLink}}{{if $.CommitRepoLink}}{{$commitRepoLink = $.CommitRepoLink}}{{end}}
|
2021-08-09 18:08:51 +00:00
|
|
|
{{range .Commits}}
|
2019-11-01 22:02:41 +00:00
|
|
|
<tr>
|
|
|
|
<td class="author">
|
2019-11-04 10:20:12 +00:00
|
|
|
{{$userName := .Author.Name}}
|
2019-11-01 22:02:41 +00:00
|
|
|
{{if .User}}
|
|
|
|
{{if .User.FullName}}
|
2019-11-04 10:20:12 +00:00
|
|
|
{{$userName = .User.FullName}}
|
2019-11-01 22:02:41 +00:00
|
|
|
{{end}}
|
2023-08-10 03:19:39 +00:00
|
|
|
{{ctx.AvatarUtils.Avatar .User 28 "gt-mr-2"}}<a href="{{.User.HomeLink}}">{{$userName}}</a>
|
2019-11-01 22:02:41 +00:00
|
|
|
{{else}}
|
2023-08-10 03:19:39 +00:00
|
|
|
{{ctx.AvatarUtils.AvatarByEmail .Author.Email .Author.Name 28 "gt-mr-2"}}
|
2020-12-03 18:46:11 +00:00
|
|
|
{{$userName}}
|
2019-11-01 22:02:41 +00:00
|
|
|
{{end}}
|
|
|
|
</td>
|
2023-02-13 17:59:59 +00:00
|
|
|
<td class="sha gt-df">
|
|
|
|
<button class="ui button copy-commit-sha gt-df gt-ac" data-clipboard-text="{{.ID}}">{{svg "octicon-copy" 14}}</button>
|
2019-11-04 10:20:12 +00:00
|
|
|
{{$class := "ui sha label"}}
|
|
|
|
{{if .Signature}}
|
2023-09-16 03:51:54 +00:00
|
|
|
{{$class = (print $class " isSigned")}}
|
2019-11-04 10:20:12 +00:00
|
|
|
{{if .Verification.Verified}}
|
2020-02-27 19:20:55 +00:00
|
|
|
{{if eq .Verification.TrustStatus "trusted"}}
|
2023-09-16 03:51:54 +00:00
|
|
|
{{$class = (print $class " isVerified")}}
|
2020-02-27 19:20:55 +00:00
|
|
|
{{else if eq .Verification.TrustStatus "untrusted"}}
|
2023-09-16 03:51:54 +00:00
|
|
|
{{$class = (print $class " isVerifiedUntrusted")}}
|
2020-02-27 19:20:55 +00:00
|
|
|
{{else}}
|
2023-09-16 03:51:54 +00:00
|
|
|
{{$class = (print $class " isVerifiedUnmatched")}}
|
2020-02-27 19:20:55 +00:00
|
|
|
{{end}}
|
2019-11-04 10:20:12 +00:00
|
|
|
{{else if .Verification.Warning}}
|
2023-09-16 03:51:54 +00:00
|
|
|
{{$class = (print $class " isWarning")}}
|
2019-11-04 10:20:12 +00:00
|
|
|
{{end}}
|
|
|
|
{{end}}
|
2023-09-03 02:58:52 +00:00
|
|
|
{{$commitShaLink := ""}}
|
2020-05-16 16:38:40 +00:00
|
|
|
{{if $.PageIsWiki}}
|
2023-09-03 02:58:52 +00:00
|
|
|
{{$commitShaLink = (printf "%s/wiki/commit/%s" $commitRepoLink (PathEscape .ID.String))}}
|
2023-08-13 09:04:42 +00:00
|
|
|
{{else if $.PageIsPullCommits}}
|
2023-09-03 02:58:52 +00:00
|
|
|
{{$commitShaLink = (printf "%s/pulls/%d/commits/%s" $commitRepoLink $.Issue.Index (PathEscape .ID.String))}}
|
2020-05-16 16:38:40 +00:00
|
|
|
{{else if $.Reponame}}
|
2023-09-03 02:58:52 +00:00
|
|
|
{{$commitShaLink = (printf "%s/commit/%s" $commitRepoLink (PathEscape .ID.String))}}
|
2019-11-04 10:20:12 +00:00
|
|
|
{{end}}
|
2023-09-03 02:58:52 +00:00
|
|
|
<a {{if $commitShaLink}}href="{{$commitShaLink}}"{{end}} class="{{$class}}">
|
2020-02-27 19:20:55 +00:00
|
|
|
<span class="shortsha">{{ShortSha .ID.String}}</span>
|
2023-09-03 02:58:52 +00:00
|
|
|
{{if .Signature}}{{template "repo/shabox_badge" dict "root" $ "verification" .Verification}}{{end}}
|
|
|
|
</a>
|
2019-11-01 22:02:41 +00:00
|
|
|
</td>
|
|
|
|
<td class="message">
|
|
|
|
<span class="message-wrapper">
|
2019-12-03 18:15:41 +00:00
|
|
|
{{if $.PageIsWiki}}
|
2023-03-05 21:59:05 +00:00
|
|
|
<span class="commit-summary {{if gt .ParentCount 1}} grey text{{end}}" title="{{.Summary}}">{{.Summary | RenderEmoji $.Context}}</span>
|
2022-08-25 21:55:52 +00:00
|
|
|
{{else}}
|
|
|
|
{{$commitLink:= printf "%s/commit/%s" $commitRepoLink (PathEscape .ID.String)}}
|
2022-01-19 23:26:57 +00:00
|
|
|
<span class="commit-summary {{if gt .ParentCount 1}} grey text{{end}}" title="{{.Summary}}">{{RenderCommitMessageLinkSubject $.Context .Message $commitRepoLink $commitLink $.Repository.ComposeMetas}}</span>
|
2019-12-03 18:15:41 +00:00
|
|
|
{{end}}
|
2019-11-01 22:02:41 +00:00
|
|
|
</span>
|
|
|
|
{{if IsMultilineCommitMessage .Message}}
|
2023-07-27 10:47:41 +00:00
|
|
|
<button class="ui button js-toggle-commit-body ellipsis-button" aria-expanded="false">...</button>
|
2019-11-01 22:02:41 +00:00
|
|
|
{{end}}
|
2021-08-09 18:08:51 +00:00
|
|
|
{{template "repo/commit_statuses" dict "Status" .Status "Statuses" .Statuses "root" $}}
|
2019-11-01 22:02:41 +00:00
|
|
|
{{if IsMultilineCommitMessage .Message}}
|
2023-09-04 13:38:59 +00:00
|
|
|
<pre class="commit-body gt-hidden">{{RenderCommitBody $.Context .Message $commitRepoLink $.Repository.ComposeMetas}}</pre>
|
2019-11-01 22:02:41 +00:00
|
|
|
{{end}}
|
|
|
|
</td>
|
2022-01-24 22:11:40 +00:00
|
|
|
{{if .Committer}}
|
2023-09-25 13:15:51 +00:00
|
|
|
<td class="text right aligned">{{TimeSince .Committer.When ctx.Locale}}</td>
|
2022-01-24 22:11:40 +00:00
|
|
|
{{else}}
|
2023-09-25 13:15:51 +00:00
|
|
|
<td class="text right aligned">{{TimeSince .Author.When ctx.Locale}}</td>
|
2022-01-24 22:11:40 +00:00
|
|
|
{{end}}
|
2019-11-01 22:02:41 +00:00
|
|
|
</tr>
|
|
|
|
{{end}}
|
|
|
|
</tbody>
|
|
|
|
</table>
|
|
|
|
</div>
|