|
|
|
@ -13,6 +13,30 @@ |
|
|
|
|
{{if IsMultilineCommitMessage .Commit.Message}} |
|
|
|
|
<pre class="commit-body">{{RenderCommitBody .Commit.Message $.RepoLink $.Repository.ComposeMetas}}</pre> |
|
|
|
|
{{end}} |
|
|
|
|
{{if .Note}} |
|
|
|
|
<div class="ui top attached info clearing segment"> |
|
|
|
|
<h3>{{.i18n.Tr "repo.diff.git-notes"}}</h3> |
|
|
|
|
<pre class="commit-body">{{RenderNote .Note $.RepoLink $.Repository.ComposeMetas}}</pre> |
|
|
|
|
</div> |
|
|
|
|
<div class="ui bottom attached info segment"> |
|
|
|
|
<div class="ui stackable grid"> |
|
|
|
|
<div class="nine wide column"> |
|
|
|
|
{{if .NoteAuthor}} |
|
|
|
|
<img class="ui avatar image" src="{{.NoteAuthor.RelAvatarLink}}" /> |
|
|
|
|
{{if .NoteAuthor.FullName}} |
|
|
|
|
<a href="{{.NoteAuthor.HomeLink}}"><strong>{{.NoteAuthor.FullName}}</strong></a> |
|
|
|
|
{{else}} |
|
|
|
|
<a href="{{.NoteAuthor.HomeLink}}"><strong>{{.NoteCommit.Author.Name}}</strong></a> |
|
|
|
|
{{end}} |
|
|
|
|
{{else}} |
|
|
|
|
<img class="ui avatar image" src="{{AvatarLink .NoteCommit.Author.Email}}" /> |
|
|
|
|
<strong>{{.NoteCommit.Author.Name}}</strong> |
|
|
|
|
{{end}} |
|
|
|
|
<span class="text grey" id="note-authored-time">{{TimeSince .NoteCommit.Author.When $.Lang}}</span> |
|
|
|
|
</div> |
|
|
|
|
</div><!-- end grid --> |
|
|
|
|
</div> |
|
|
|
|
{{end}} |
|
|
|
|
<span class="text grey"><i class="octicon octicon-git-branch"></i>{{.BranchName}}</span> |
|
|
|
|
</div> |
|
|
|
|
<div class="ui attached info segment {{if .Commit.Signature}} isSigned {{if .Verification.Verified }} isVerified {{end}}{{end}}"> |
|
|
|
@ -65,30 +89,6 @@ |
|
|
|
|
</div> |
|
|
|
|
{{end}} |
|
|
|
|
{{end}} |
|
|
|
|
{{if .Note}} |
|
|
|
|
<div class="ui top attached info clearing segment"> |
|
|
|
|
<h3>{{.i18n.Tr "repo.diff.git-notes"}}</h3> |
|
|
|
|
<pre class="commit-body">{{RenderNote .Note $.RepoLink $.Repository.ComposeMetas}}</pre> |
|
|
|
|
</div> |
|
|
|
|
<div class="ui bottom attached info segment"> |
|
|
|
|
<div class="ui stackable grid"> |
|
|
|
|
<div class="nine wide column"> |
|
|
|
|
{{if .NoteAuthor}} |
|
|
|
|
<img class="ui avatar image" src="{{.NoteAuthor.RelAvatarLink}}" /> |
|
|
|
|
{{if .NoteAuthor.FullName}} |
|
|
|
|
<a href="{{.NoteAuthor.HomeLink}}"><strong>{{.NoteAuthor.FullName}}</strong></a> |
|
|
|
|
{{else}} |
|
|
|
|
<a href="{{.NoteAuthor.HomeLink}}"><strong>{{.NoteCommit.Author.Name}}</strong></a> |
|
|
|
|
{{end}} |
|
|
|
|
{{else}} |
|
|
|
|
<img class="ui avatar image" src="{{AvatarLink .NoteCommit.Author.Email}}" /> |
|
|
|
|
<strong>{{.NoteCommit.Author.Name}}</strong> |
|
|
|
|
{{end}} |
|
|
|
|
<span class="text grey" id="note-authored-time">{{TimeSince .NoteCommit.Author.When $.Lang}}</span> |
|
|
|
|
</div> |
|
|
|
|
</div><!-- end grid --> |
|
|
|
|
</div> |
|
|
|
|
{{end}} |
|
|
|
|
{{end}} |
|
|
|
|
|
|
|
|
|
{{template "repo/diff/box" .}} |
|
|
|
|