2015-12-01 00:04:13 +01:00
|
|
|
<table id="repo-files-table" class="ui fixed single line table">
|
2015-12-07 23:30:52 +01:00
|
|
|
<thead>
|
2017-11-30 06:08:40 +01:00
|
|
|
<tr class="commit-list">
|
2015-12-07 23:30:52 +01:00
|
|
|
<th class="four wide">
|
2016-08-30 11:08:38 +02:00
|
|
|
{{if .LatestCommitUser}}
|
|
|
|
<img class="ui avatar image img-12" src="{{.LatestCommitUser.RelAvatarLink}}" />
|
2017-10-26 09:45:14 +02:00
|
|
|
{{if .LatestCommitUser.FullName}}
|
|
|
|
<a href="{{AppSubUrl}}/{{.LatestCommitUser.Name}}"><strong>{{.LatestCommitUser.FullName}}</strong></a>
|
|
|
|
{{else}}
|
|
|
|
<a href="{{AppSubUrl}}/{{.LatestCommitUser.Name}}"><strong>{{if .LatestCommit.Author}}{{.LatestCommit.Author.Name}}{{else}}{{.LatestCommitUser.Name}}{{end}}</strong></a>
|
|
|
|
{{end}}
|
2015-12-07 23:30:52 +01:00
|
|
|
{{else}}
|
2017-10-26 09:45:14 +02:00
|
|
|
{{if .LatestCommit.Author}}
|
|
|
|
<img class="ui avatar image img-12" src="{{AvatarLink .LatestCommit.Author.Email}}" />
|
|
|
|
<strong>{{.LatestCommit.Author.Name}}</strong>
|
|
|
|
{{end}}
|
2015-12-07 23:30:52 +01:00
|
|
|
{{end}}
|
2017-05-05 09:15:36 +02:00
|
|
|
<a rel="nofollow" class="ui sha label {{if .LatestCommit.Signature}} isSigned {{if .LatestCommitVerification.Verified }} isVerified {{end}}{{end}}" href="{{.RepoLink}}/commit/{{.LatestCommit.ID}}">
|
|
|
|
{{ShortSha .LatestCommit.ID.String}}
|
|
|
|
{{if .LatestCommit.Signature}}
|
|
|
|
<div class="ui detail icon button">
|
|
|
|
{{if .LatestCommitVerification.Verified}}
|
|
|
|
<i title="{{.LatestCommitVerification.Reason}}" class="lock green icon"></i>
|
|
|
|
{{else}}
|
|
|
|
<i title="{{$.i18n.Tr .LatestCommitVerification.Reason}}" class="unlock icon"></i>
|
|
|
|
{{end}}
|
|
|
|
</div>
|
|
|
|
{{end}}
|
|
|
|
</a>
|
2017-11-13 02:35:55 +01:00
|
|
|
<span class="grey has-emoji">{{RenderCommitMessage .LatestCommit.Summary .RepoLink $.Repository.ComposeMetas}}
|
2017-11-30 06:08:40 +01:00
|
|
|
{{if IsMultilineCommitMessage .LatestCommit.Message}}
|
|
|
|
<button class="basic compact mini ui icon button commit-button"><i class="ellipsis horizontal icon"></i></button>
|
|
|
|
<pre class="commit-body" style="display: none;">{{RenderCommitBody .LatestCommit.Message $.RepoLink $.Repository.ComposeMetas}}</pre>
|
|
|
|
{{end}}
|
2017-09-14 08:51:32 +02:00
|
|
|
{{template "repo/commit_status" .LatestCommitStatus}}</span>
|
2015-12-07 23:30:52 +01:00
|
|
|
</th>
|
|
|
|
<th class="nine wide">
|
|
|
|
</th>
|
2017-10-26 09:45:14 +02:00
|
|
|
<th class="three wide text grey right age">{{if .LatestCommit.Author}}{{TimeSince .LatestCommit.Author.When $.Lang}}{{end}}</th>
|
2015-12-07 23:30:52 +01:00
|
|
|
</tr>
|
|
|
|
</thead>
|
|
|
|
<tbody>
|
|
|
|
{{if .HasParentPath}}
|
|
|
|
<tr class="has-parent">
|
2016-07-16 06:45:13 +02:00
|
|
|
<td colspan="3"><i class="octicon octicon-mail-reply"></i><a href="{{EscapePound .BranchLink}}{{.ParentPath}}">..</a></td>
|
2015-12-07 23:30:52 +01:00
|
|
|
</tr>
|
|
|
|
{{end}}
|
|
|
|
{{range $item := .Files}}
|
|
|
|
{{$entry := index $item 0}}
|
|
|
|
{{$commit := index $item 1}}
|
|
|
|
<tr>
|
|
|
|
{{if $entry.IsSubModule}}
|
|
|
|
<td>
|
2016-07-16 06:45:13 +02:00
|
|
|
<span class="octicon octicon-file-submodule"></span>
|
2016-06-27 17:40:36 +02:00
|
|
|
{{$refURL := $commit.RefURL AppUrl $.BranchLink}}
|
|
|
|
{{if $refURL}}
|
|
|
|
<a href="{{$refURL}}">{{$entry.Name}}</a> @ <a href="{{$refURL}}/commit/{{$commit.RefID}}">{{ShortSha $commit.RefID}}</a>
|
2015-12-07 23:30:52 +01:00
|
|
|
{{else}}
|
2016-06-27 17:40:36 +02:00
|
|
|
{{$entry.Name}} @ {{ShortSha $commit.RefID}}
|
2015-12-07 23:30:52 +01:00
|
|
|
{{end}}
|
|
|
|
</td>
|
|
|
|
{{else}}
|
|
|
|
<td class="name">
|
2016-12-28 17:35:52 +01:00
|
|
|
{{if $entry.IsDir}}
|
|
|
|
{{$subJumpablePathName := $entry.GetSubJumpablePathName}}
|
|
|
|
{{$subJumpablePath := SubJumpablePath $subJumpablePathName}}
|
|
|
|
<span class="octicon octicon-file-directory"></span>
|
|
|
|
<a href="{{EscapePound $.TreeLink}}/{{EscapePound $subJumpablePathName}}">
|
|
|
|
{{if eq (len $subJumpablePath) 2}}
|
|
|
|
<span class="jumpable-path">{{index $subJumpablePath 0}}</span>{{index $subJumpablePath 1}}
|
|
|
|
{{else}}
|
|
|
|
{{index $subJumpablePath 0}}
|
|
|
|
{{end}}
|
|
|
|
</a>
|
|
|
|
{{else}}
|
2018-05-01 09:04:36 +02:00
|
|
|
<span class="octicon octicon-{{EntryIcon $entry}}"></span>
|
2016-12-28 17:35:52 +01:00
|
|
|
<a href="{{EscapePound $.TreeLink}}/{{EscapePound $entry.Name}}">{{$entry.Name}}</a>
|
|
|
|
{{end}}
|
2015-12-07 23:30:52 +01:00
|
|
|
</td>
|
|
|
|
{{end}}
|
2016-03-03 01:18:58 +01:00
|
|
|
<td class="message collapsing has-emoji">
|
2017-11-13 02:35:55 +01:00
|
|
|
{{RenderCommitMessageLink $commit.Summary $.RepoLink (print $.RepoLink "/commit/" $commit.ID) $.Repository.ComposeMetas}}
|
2015-12-07 23:30:52 +01:00
|
|
|
</td>
|
|
|
|
<td class="text grey right age">{{TimeSince $commit.Committer.When $.Lang}}</td>
|
|
|
|
</tr>
|
|
|
|
{{end}}
|
|
|
|
</tbody>
|
2014-07-26 06:24:27 +02:00
|
|
|
</table>
|
|
|
|
{{if .ReadmeExist}}
|
2015-12-07 23:30:52 +01:00
|
|
|
{{template "repo/view_file" .}}
|
2015-07-28 10:42:06 +02:00
|
|
|
{{end}}
|