2019-06-14 03:32:14 +02:00
<table id="repo-files-table" class="ui single line table fixed">
2015-12-07 23:30:52 +01:00
<thead>
2017-11-30 06:08:40 +01:00
<tr class="commit-list">
2019-05-06 21:43:40 +03:00
<th colspan="2">
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>
2019-06-14 03:32:14 +02:00
{{template "repo/commit_status" .LatestCommitStatus}}
<span class="grey has-emoji commit-summary" title="{{.LatestCommit.Summary}}">{{.LatestCommit.Summary}}
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}}
2019-06-14 03:32:14 +02:00
</span>
2015-12-07 23:30:52 +01:00
</th>
2019-05-06 21:43:40 +03:00
<th class="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>
2019-05-06 21:43:40 +03:00
<span class="truncate">
<span class="octicon octicon-file-submodule"></span>
{{ $ refURL := $ commit . RefURL AppUrl $.BranchLink}}
{{if $ refURL }}
<a href="{{ $ refURL }}">{{ $ entry . Name }}</a> @ <a href="{{ $ refURL }}/commit/{{ $ commit . RefID }}">{{ShortSha $ commit . RefID }}</a>
{{else}}
{{ $ entry . Name }} @ {{ShortSha $ commit . RefID }}
{{end}}
</span>
2015-12-07 23:30:52 +01:00
</td>
{{else}}
<td class="name">
2019-05-06 21:43:40 +03:00
<span class="truncate">
{{if $ entry . IsDir }}
{{ $ subJumpablePathName := $ entry . GetSubJumpablePathName }}
{{ $ subJumpablePath := SubJumpablePath $ subJumpablePathName }}
<span class="octicon octicon-file-directory"></span>
<a href="{{EscapePound $.TreeLink}}/{{EscapePound $ subJumpablePathName }}" title="{{ $ subJumpablePathName }}">
{{if eq (len $ subJumpablePath ) 2}}
<span class="jumpable-path">{{index $ subJumpablePath 0}}</span>{{index $ subJumpablePath 1}}
{{else}}
{{index $ subJumpablePath 0}}
{{end}}
</a>
{{else}}
<span class="octicon octicon-{{EntryIcon $ entry }}"></span>
<a href="{{EscapePound $.TreeLink}}/{{EscapePound $ entry . Name }}" title="{{ $ entry . Name }}">{{ $ entry . Name }}</a>
{{end}}
</span>
2015-12-07 23:30:52 +01:00
</td>
{{end}}
2019-05-06 21:43:40 +03:00
<td class="message has-emoji">
<span class="truncate">
2019-06-14 03:32:14 +02:00
<a href="{{$.RepoLink}}/commit/{{ $ commit . ID }}" title="{{ $ commit . Summary }}">{{ $ commit . Summary }}</a>
2019-05-06 21:43:40 +03:00
</span>
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}}