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}}
|
|
|
|
<div class="ui top attached info clearing segment">
|
|
|
|
<a class="ui floated right blue tiny button" href="{{EscapePound .SourcePath}}">
|
|
|
|
{{.i18n.Tr "repo.diff.browse_source"}}
|
|
|
|
</a>
|
|
|
|
{{RenderCommitMessage true .Commit.Message $.RepoLink $.Repository.ComposeMetas}}
|
|
|
|
</div>
|
|
|
|
<div class="ui attached info segment">
|
|
|
|
{{if .Author}}
|
2016-08-05 21:12:54 +02:00
|
|
|
<img class="ui avatar image" src="{{.Author.RelAvatarLink}}" />
|
2015-12-09 17:46:39 +01:00
|
|
|
<a href="{{.Author.HomeLink}}"><strong>{{.Commit.Author.Name}}</strong></a> {{if .IsSigned}}<{{.Commit.Author.Email}}>{{end}}
|
2015-12-07 23:30:52 +01:00
|
|
|
{{else}}
|
|
|
|
<img class="ui avatar image" src="{{AvatarLink .Commit.Author.Email}}" />
|
|
|
|
<strong>{{.Commit.Author.Name}}</strong>
|
|
|
|
{{end}}
|
|
|
|
<span class="text grey" id="authored-time">{{TimeSince .Commit.Author.When $.Lang}}</span>
|
|
|
|
<div class="ui right">
|
|
|
|
<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="item">{{.i18n.Tr "repo.diff.commit"}}</div>
|
|
|
|
<div class="item"><span class="ui blue sha label">{{ShortSha .CommitID}}</span></div>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
{{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" .}}
|