2015-11-30 16:04:13 -07:00
|
|
|
<table id="repo-files-table" class="ui fixed single line table">
|
2015-12-07 15:30:52 -07:00
|
|
|
<thead>
|
|
|
|
<tr>
|
|
|
|
<th class="four wide">
|
|
|
|
{{if .LastCommitUser}}
|
|
|
|
<img class="ui avatar image img-12" src="{{.LastCommitUser.AvatarLink}}" />
|
|
|
|
<a href="{{AppSubUrl}}/{{.LastCommitUser.Name}}"><strong>{{.LastCommit.Author.Name}}</strong></a>
|
|
|
|
{{else}}
|
|
|
|
<img class="ui avatar image img-12" src="{{AvatarLink .LastCommit.Author.Email}}" />
|
|
|
|
<strong>{{.LastCommit.Author.Name}}</strong>
|
|
|
|
{{end}}
|
|
|
|
<a rel="nofollow" class="ui sha label" href="{{.RepoLink}}/commit/{{.LastCommit.ID}}" rel="nofollow">{{ShortSha .LastCommit.ID.String}}</a>
|
2016-03-02 17:18:58 -07:00
|
|
|
<span class="grey has-emoji">{{RenderCommitMessage false .LastCommit.Summary .RepoLink $.Repository.ComposeMetas}}</span>
|
2015-12-07 15:30:52 -07:00
|
|
|
</th>
|
|
|
|
<th class="nine wide">
|
|
|
|
</th>
|
|
|
|
<th class="three wide text grey right age">{{TimeSince .LastCommit.Author.When $.Lang}}</th>
|
|
|
|
</tr>
|
|
|
|
</thead>
|
|
|
|
<tbody>
|
|
|
|
{{if .HasParentPath}}
|
|
|
|
<tr class="has-parent">
|
|
|
|
<td colspan="3"><i class="icon octicon octicon-mail-reply"></i><a href="{{EscapePound .BranchLink}}{{.ParentPath}}">..</a></td>
|
|
|
|
</tr>
|
|
|
|
{{end}}
|
|
|
|
{{range $item := .Files}}
|
|
|
|
{{$entry := index $item 0}}
|
|
|
|
{{$commit := index $item 1}}
|
|
|
|
<tr>
|
|
|
|
{{if $entry.IsSubModule}}
|
|
|
|
<td>
|
|
|
|
<span class="icon octicon octicon-file-submodule"></span>
|
2015-12-13 21:16:58 -07:00
|
|
|
{{if $commit.RefUrl AppUrl}}
|
2016-01-13 11:01:53 -07:00
|
|
|
<a href="{{$commit.RefUrl AppUrl}}">{{$entry.Name}}</a> @ <a href="{{$commit.RefUrl AppUrl}}/commit/{{$commit.RefId}}">{{ShortSha $commit.RefId}}</a>
|
2015-12-07 15:30:52 -07:00
|
|
|
{{else}}
|
|
|
|
{{$entry.Name}} @ {{ShortSha $commit.RefId}}
|
|
|
|
{{end}}
|
|
|
|
</td>
|
|
|
|
{{else}}
|
|
|
|
<td class="name">
|
|
|
|
<span class="icon octicon octicon-file-{{if or $entry.IsDir}}directory{{else}}text{{end}}"></span>
|
|
|
|
<a href="{{EscapePound $.BranchLink}}/{{EscapePound $.TreePath}}{{EscapePound $entry.Name}}">{{$entry.Name}}</a>
|
|
|
|
</td>
|
|
|
|
{{end}}
|
2016-03-02 17:18:58 -07:00
|
|
|
<td class="message collapsing has-emoji">
|
2015-12-07 15:30:52 -07:00
|
|
|
<a rel="nofollow" class="ui sha label" href="{{AppSubUrl}}/{{$.Username}}/{{$.Reponame}}/commit/{{$commit.ID}}">{{ShortSha $commit.ID.String}}</a>
|
|
|
|
{{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-25 22:24:27 -06:00
|
|
|
</table>
|
|
|
|
{{if .ReadmeExist}}
|
2015-12-07 15:30:52 -07:00
|
|
|
{{template "repo/view_file" .}}
|
2015-07-28 02:42:06 -06:00
|
|
|
{{end}}
|