2015-12-01 02:04:13 +03:00
<table id="repo-files-table" class="ui fixed single line table">
2015-12-08 01:30:52 +03:00
<thead>
<tr>
<th class="four wide">
2016-08-30 12:08:38 +03:00
{{if .LatestCommitUser}}
<img class="ui avatar image img-12" src="{{.LatestCommitUser.RelAvatarLink}}" />
2016-10-29 19:04:56 +03:00
{{if .LatestCommitUser.FullName}}
<a href="{{AppSubUrl}}/{{.LatestCommitUser.Name}}"><strong>{{.LatestCommitUser.FullName}}</strong></a>
{{else}}
<a href="{{AppSubUrl}}/{{.LatestCommitUser.Name}}"><strong>{{.LatestCommit.Author.Name}}</strong></a>
{{end}}
2015-12-08 01:30:52 +03:00
{{else}}
2016-08-30 12:08:38 +03:00
<img class="ui avatar image img-12" src="{{AvatarLink .LatestCommit.Author.Email}}" />
<strong>{{.LatestCommit.Author.Name}}</strong>
2015-12-08 01:30:52 +03:00
{{end}}
2016-08-30 12:08:38 +03:00
<a rel="nofollow" class="ui sha label" href="{{.RepoLink}}/commit/{{.LatestCommit.ID}}" rel="nofollow">{{ShortSha .LatestCommit.ID.String}}</a>
<span class="grey has-emoji">{{RenderCommitMessage false .LatestCommit.Summary .RepoLink $.Repository.ComposeMetas}}</span>
2015-12-08 01:30:52 +03:00
</th>
<th class="nine wide">
</th>
2016-08-30 12:08:38 +03:00
<th class="three wide text grey right age">{{TimeSince .LatestCommit.Author.When $.Lang}}</th>
2015-12-08 01:30:52 +03:00
</tr>
</thead>
<tbody>
{{if .HasParentPath}}
<tr class="has-parent">
2016-07-16 07:45:13 +03:00
<td colspan="3"><i class="octicon octicon-mail-reply"></i><a href="{{EscapePound .BranchLink}}{{.ParentPath}}">..</a></td>
2015-12-08 01:30:52 +03:00
</tr>
{{end}}
{{range $ item := .Files}}
{{ $ entry := index $ item 0}}
{{ $ commit := index $ item 1}}
<tr>
{{if $ entry . IsSubModule }}
<td>
2016-07-16 07:45:13 +03:00
<span class="octicon octicon-file-submodule"></span>
2016-06-27 18:40:36 +03: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-08 01:30:52 +03:00
{{else}}
2016-06-27 18:40:36 +03:00
{{ $ entry . Name }} @ {{ShortSha $ commit . RefID }}
2015-12-08 01:30:52 +03:00
{{end}}
</td>
{{else}}
<td class="name">
2016-07-16 07:45:13 +03:00
<span class="octicon octicon-file-{{if or $ entry . IsDir }}directory{{else}}text{{end}}"></span>
2016-08-28 01:25:01 +03:00
<a href="{{EscapePound $.TreeLink}}/{{EscapePound $ entry . Name }}">{{ $ entry . Name }}</a>
2015-12-08 01:30:52 +03:00
</td>
{{end}}
2016-03-03 03:18:58 +03:00
<td class="message collapsing has-emoji">
2016-08-30 23:59:41 +03:00
<a rel="nofollow" class="ui sha label" href="{{$.RepoLink}}/commit/{{ $ commit . ID }}">{{ShortSha $ commit . ID . String }}</a>
2015-12-08 01:30:52 +03:00
{{RenderCommitMessage false $ commit . Summary $.RepoLink $.Repository.ComposeMetas}}
</td>
<td class="text grey right age">{{TimeSince $ commit . Committer . When $.Lang}}</td>
</tr>
{{end}}
</tbody>
2014-07-26 08:24:27 +04:00
</table>
{{if .ReadmeExist}}
2015-12-08 01:30:52 +03:00
{{template "repo/view_file" .}}
2015-07-28 11:42:06 +03:00
{{end}}