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 02:08:38 -07:00
{{if .LatestCommitUser}}
<img class="ui avatar image img-12" src="{{.LatestCommitUser.RelAvatarLink}}" />
2017-10-26 10:45:14 +03: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 10:45:14 +03: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 10:15:36 +03: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-12 17:35:55 -08: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 10:45:14 +03: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 12:45:13 +08: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 12:45:13 +08:00
<span class="octicon octicon-file-submodule"></span>
2016-06-27 23:40:36 +08: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 23:40:36 +08: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 17:04:36 +10: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-02 21:18:58 -03:00
<td class="message collapsing has-emoji">
2017-11-12 17:35:55 -08: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 00:24:27 -04:00
</table>
{{if .ReadmeExist}}
2015-12-07 23:30:52 +01:00
{{template "repo/view_file" .}}
2015-07-28 11:42:06 +03:00
{{end}}