mirror of
https://github.com/go-gitea/gitea
synced 2024-11-18 16:01:36 +01:00
Move note bubble inside the commit bubble
This commit is contained in:
parent
cb71e3f1ac
commit
c0951fe0e3
1 changed files with 24 additions and 24 deletions
|
@ -13,6 +13,30 @@
|
||||||
{{if IsMultilineCommitMessage .Commit.Message}}
|
{{if IsMultilineCommitMessage .Commit.Message}}
|
||||||
<pre class="commit-body">{{RenderCommitBody .Commit.Message $.RepoLink $.Repository.ComposeMetas}}</pre>
|
<pre class="commit-body">{{RenderCommitBody .Commit.Message $.RepoLink $.Repository.ComposeMetas}}</pre>
|
||||||
{{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}}
|
||||||
<span class="text grey"><i class="octicon octicon-git-branch"></i>{{.BranchName}}</span>
|
<span class="text grey"><i class="octicon octicon-git-branch"></i>{{.BranchName}}</span>
|
||||||
</div>
|
</div>
|
||||||
<div class="ui attached info segment {{if .Commit.Signature}} isSigned {{if .Verification.Verified }} isVerified {{end}}{{end}}">
|
<div class="ui attached info segment {{if .Commit.Signature}} isSigned {{if .Verification.Verified }} isVerified {{end}}{{end}}">
|
||||||
|
@ -65,30 +89,6 @@
|
||||||
</div>
|
</div>
|
||||||
{{end}}
|
{{end}}
|
||||||
{{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}}
|
{{end}}
|
||||||
|
|
||||||
{{template "repo/diff/box" .}}
|
{{template "repo/diff/box" .}}
|
||||||
|
|
Loading…
Reference in a new issue