2015-08-20 14:18:49 +02:00
|
|
|
{{template "base/head" .}}
|
|
|
|
<div class="repository diff">
|
2015-12-07 23:30:52 +01:00
|
|
|
{{template "repo/header" .}}
|
2016-01-27 23:52:42 +01:00
|
|
|
<div class="ui container {{if .IsSplitStyle}}fluid padded{{end}}">
|
2015-12-07 23:30:52 +01:00
|
|
|
{{if .IsDiffCompare }}
|
|
|
|
{{template "repo/commits_table" .}}
|
|
|
|
{{else}}
|
2017-03-22 11:43:54 +01:00
|
|
|
<div class="ui top attached info clearing segment {{if .Commit.Signature}} isSigned {{if .Verification.Verified }} isVerified {{end}}{{end}}">
|
2015-12-07 23:30:52 +01:00
|
|
|
<a class="ui floated right blue tiny button" href="{{EscapePound .SourcePath}}">
|
|
|
|
{{.i18n.Tr "repo.diff.browse_source"}}
|
|
|
|
</a>
|
2018-10-29 22:00:35 +01:00
|
|
|
<h3 class="has-emoji">{{RenderCommitMessage .Commit.Message $.RepoLink $.Repository.ComposeMetas}}{{template "repo/commit_status" .CommitStatus}}</h3>
|
2017-11-30 06:08:40 +01:00
|
|
|
{{if IsMultilineCommitMessage .Commit.Message}}
|
|
|
|
<pre class="commit-body">{{RenderCommitBody .Commit.Message $.RepoLink $.Repository.ComposeMetas}}</pre>
|
|
|
|
{{end}}
|
2019-02-05 22:47:01 +01:00
|
|
|
<span class="text grey"><i class="octicon octicon-git-branch"></i>{{.Commit.Branch}}</span>
|
2015-12-07 23:30:52 +01:00
|
|
|
</div>
|
2017-03-22 11:43:54 +01:00
|
|
|
<div class="ui attached info segment {{if .Commit.Signature}} isSigned {{if .Verification.Verified }} isVerified {{end}}{{end}}">
|
2017-12-31 01:47:52 +01:00
|
|
|
<div class="ui stackable grid">
|
|
|
|
<div class="nine wide column">
|
|
|
|
{{if .Author}}
|
|
|
|
<img class="ui avatar image" src="{{.Author.RelAvatarLink}}" />
|
|
|
|
{{if .Author.FullName}}
|
|
|
|
<a href="{{.Author.HomeLink}}"><strong>{{.Author.FullName}}</strong></a> {{if .IsSigned}}<{{.Commit.Author.Email}}>{{end}}
|
|
|
|
{{else}}
|
|
|
|
<a href="{{.Author.HomeLink}}"><strong>{{.Commit.Author.Name}}</strong></a> {{if .IsSigned}}<{{.Commit.Author.Email}}>{{end}}
|
|
|
|
{{end}}
|
|
|
|
{{else}}
|
|
|
|
<img class="ui avatar image" src="{{AvatarLink .Commit.Author.Email}}" />
|
|
|
|
<strong>{{.Commit.Author.Name}}</strong>
|
2015-12-07 23:30:52 +01:00
|
|
|
{{end}}
|
2017-12-31 01:47:52 +01:00
|
|
|
<span class="text grey" id="authored-time">{{TimeSince .Commit.Author.When $.Lang}}</span>
|
2015-12-07 23:30:52 +01:00
|
|
|
</div>
|
2017-12-31 01:47:52 +01:00
|
|
|
<div class="seven wide right aligned column">
|
|
|
|
<div class="ui horizontal list">
|
|
|
|
{{if .Parents}}
|
|
|
|
<div class="item">
|
|
|
|
{{.i18n.Tr "repo.diff.parent"}}
|
|
|
|
</div>
|
|
|
|
<div class="item">
|
|
|
|
{{range .Parents}}
|
|
|
|
<a class="ui blue sha label" href="{{$.RepoLink}}/commit/{{.}}">{{ShortSha .}}</a>
|
|
|
|
{{end}}
|
|
|
|
</div>
|
|
|
|
{{end}}
|
|
|
|
<div class="mobile-only"></div>
|
|
|
|
<div class="item">{{.i18n.Tr "repo.diff.commit"}}</div>
|
|
|
|
<div class="item"><span class="ui blue sha label">{{ShortSha .CommitID}}</span></div>
|
|
|
|
</div>
|
|
|
|
</div><!-- end column -->
|
|
|
|
</div><!-- end grid -->
|
2015-12-07 23:30:52 +01:00
|
|
|
</div>
|
2017-03-22 11:43:54 +01:00
|
|
|
{{if .Commit.Signature}}
|
|
|
|
{{if .Verification.Verified }}
|
2019-01-30 00:11:53 +01:00
|
|
|
<div class="ui bottom attached positive message">
|
2017-03-22 11:43:54 +01:00
|
|
|
<i class="green lock icon"></i>
|
2019-01-30 00:11:53 +01:00
|
|
|
<span>{{.i18n.Tr "repo.commits.signed_by"}}:</span>
|
2017-03-22 11:43:54 +01:00
|
|
|
<a href="{{.Verification.SigningUser.HomeLink}}"><strong>{{.Commit.Committer.Name}}</strong></a> <{{.Commit.Committer.Email}}>
|
2019-01-30 00:11:53 +01:00
|
|
|
<span class="pull-right"><span>{{.i18n.Tr "repo.commits.gpg_key_id"}}:</span> {{.Verification.SigningKey.KeyID}}</span>
|
2017-03-22 11:43:54 +01:00
|
|
|
</div>
|
|
|
|
{{else}}
|
2019-01-30 00:11:53 +01:00
|
|
|
<div class="ui bottom attached message">
|
2017-03-22 11:43:54 +01:00
|
|
|
<i class="grey unlock icon"></i>
|
|
|
|
{{.i18n.Tr .Verification.Reason}}
|
|
|
|
</div>
|
|
|
|
{{end}}
|
|
|
|
{{end}}
|
2015-12-07 23:30:52 +01:00
|
|
|
{{end}}
|
|
|
|
|
2016-08-28 13:31:42 +02:00
|
|
|
{{template "repo/diff/box" .}}
|
2015-12-07 23:30:52 +01:00
|
|
|
</div>
|
2014-03-24 14:27:19 +01:00
|
|
|
</div>
|
2015-08-20 14:18:49 +02:00
|
|
|
{{template "base/footer" .}}
|