2019-11-01 18:02:41 -04:00
|
|
|
<div class="ui attached table segment">
|
|
|
|
<table class="ui very basic striped fixed table single line" id="commits-table">
|
|
|
|
<thead>
|
|
|
|
<tr>
|
|
|
|
<th class="four wide">{{.i18n.Tr "repo.commits.author"}}</th>
|
|
|
|
<th class="two wide sha">SHA1</th>
|
|
|
|
<th class="seven wide message">{{.i18n.Tr "repo.commits.message"}}</th>
|
|
|
|
<th class="three wide right aligned">{{.i18n.Tr "repo.commits.date"}}</th>
|
|
|
|
</tr>
|
|
|
|
</thead>
|
|
|
|
<tbody class="commit-list">
|
|
|
|
{{ $r:= List .Commits}}
|
|
|
|
{{range $r}}
|
|
|
|
<tr>
|
|
|
|
<td class="author">
|
2019-11-04 05:20:12 -05:00
|
|
|
{{$userName := .Author.Name}}
|
2019-11-01 18:02:41 -04:00
|
|
|
{{if .User}}
|
|
|
|
{{if .User.FullName}}
|
2019-11-04 05:20:12 -05:00
|
|
|
{{$userName = .User.FullName}}
|
2019-11-01 18:02:41 -04:00
|
|
|
{{end}}
|
2019-11-04 05:20:12 -05:00
|
|
|
<img class="ui avatar image" src="{{.User.RelAvatarLink}}" alt=""/> <a href="{{AppSubUrl}}/{{.User.Name}}">{{$userName}}</a>
|
2019-11-01 18:02:41 -04:00
|
|
|
{{else}}
|
|
|
|
<img class="ui avatar image" src="{{AvatarLink .Author.Email}}" alt=""/> {{$userName}}
|
|
|
|
{{end}}
|
|
|
|
</td>
|
|
|
|
<td class="sha">
|
2019-11-04 05:20:12 -05:00
|
|
|
{{$class := "ui sha label"}}
|
|
|
|
{{if .Signature}}
|
|
|
|
{{$class = (printf "%s%s" $class " isSigned")}}
|
|
|
|
{{if .Verification.Verified}}
|
|
|
|
{{$class = (printf "%s%s" $class " isVerified")}}
|
|
|
|
{{else if .Verification.Warning}}
|
|
|
|
{{$class = (printf "%s%s" $class " isWarning")}}
|
|
|
|
{{end}}
|
|
|
|
{{end}}
|
|
|
|
{{if $.Reponame}}
|
|
|
|
<a href="{{AppSubUrl}}/{{$.Username}}/{{$.Reponame}}/commit/{{.ID}}" rel="nofollow" class="{{$class}}">
|
|
|
|
{{else}}
|
|
|
|
<span class="{{$class}}">
|
|
|
|
{{end}}
|
2019-11-01 18:02:41 -04:00
|
|
|
{{ShortSha .ID.String}}
|
|
|
|
{{if .Signature}}
|
|
|
|
<div class="ui detail icon button">
|
|
|
|
{{if .Verification.Verified}}
|
|
|
|
{{if ne .Verification.SigningUser.ID 0}}
|
2019-11-04 05:20:12 -05:00
|
|
|
<i title="{{.Verification.Reason}}" class="lock green icon"></i>
|
|
|
|
{{else}}
|
|
|
|
<i title="{{.Verification.Reason}}" class="icons">
|
|
|
|
<i class="green lock icon"></i>
|
|
|
|
<i class="tiny inverted cog icon centerlock"></i>
|
|
|
|
</i>
|
|
|
|
{{end}}
|
2019-11-01 18:02:41 -04:00
|
|
|
{{else if .Verification.Warning}}
|
2019-11-04 05:20:12 -05:00
|
|
|
<i title="{{$.i18n.Tr .Verification.Reason}}" class="red unlock icon"></i>
|
|
|
|
{{else}}
|
2019-11-01 18:02:41 -04:00
|
|
|
<i title="{{$.i18n.Tr .Verification.Reason}}" class="unlock icon"></i>
|
|
|
|
{{end}}
|
|
|
|
</div>
|
|
|
|
{{end}}
|
2019-11-04 05:20:12 -05:00
|
|
|
{{if $.Reponame}}
|
|
|
|
</a>
|
|
|
|
{{else}}
|
|
|
|
</span>
|
|
|
|
{{end}}
|
2019-11-01 18:02:41 -04:00
|
|
|
</td>
|
|
|
|
<td class="message">
|
|
|
|
<span class="message-wrapper">
|
2019-12-03 13:15:41 -05:00
|
|
|
{{if $.PageIsWiki}}
|
|
|
|
<span class="commit-summary has-emoji{{if gt .ParentCount 1}} grey text{{end}}" title="{{.Summary}}">{{.Summary}}</span>
|
|
|
|
{{else }}
|
2019-11-01 18:02:41 -04:00
|
|
|
{{ $commitLink:= printf "%s/%s/%s/commit/%s" AppSubUrl $.Username $.Reponame .ID }}
|
|
|
|
<span class="commit-summary has-emoji{{if gt .ParentCount 1}} grey text{{end}}" title="{{.Summary}}">{{RenderCommitMessageLinkSubject .Message $.RepoLink $commitLink $.Repository.ComposeMetas}}</span>
|
2019-12-03 13:15:41 -05:00
|
|
|
{{end}}
|
2019-11-01 18:02:41 -04:00
|
|
|
</span>
|
|
|
|
{{if IsMultilineCommitMessage .Message}}
|
|
|
|
<button class="basic compact mini ui icon button commit-button"><i class="ellipsis horizontal icon"></i></button>
|
|
|
|
{{end}}
|
|
|
|
{{if eq (CommitType .) "SignCommitWithStatuses"}}
|
2019-11-04 05:20:12 -05:00
|
|
|
{{template "repo/commit_status" .Status}}
|
2019-11-01 18:02:41 -04:00
|
|
|
{{end}}
|
|
|
|
{{if IsMultilineCommitMessage .Message}}
|
|
|
|
<pre class="commit-body" style="display: none;">{{RenderCommitBody .Message $.RepoLink $.Repository.ComposeMetas}}</pre>
|
|
|
|
{{end}}
|
|
|
|
</td>
|
2019-12-17 16:34:11 -05:00
|
|
|
<td class="text right aligned">{{TimeSince .Author.When $.Lang}}</td>
|
2019-11-01 18:02:41 -04:00
|
|
|
</tr>
|
|
|
|
{{end}}
|
|
|
|
</tbody>
|
|
|
|
</table>
|
|
|
|
</div>
|