2014-07-26 08:24:27 +04:00
<table id="repo-files-table" class="table-border table-block table-radius">
<thead>
<tr>
<th colspan="4" class="clear">
<span class="author left">
<img class="avatar-24 radius" src="{{AvatarLink .LastCommit.Author.Email}}" />
2014-09-26 16:55:13 +04:00
{{if .LastCommitUser}}<a href="{{AppSubUrl}}/{{.LastCommitUser}}">{{end}}<strong>{{.LastCommit.Author.Name}}</strong>:{{if .LastCommitUser}}</a>{{end}}
2014-07-26 08:24:27 +04:00
</span>
<span class="last-commit"><a href="{{.RepoLink}}/commit/{{.LastCommit.Id}}" rel="nofollow">
<strong>{{ShortSha .LastCommit.Id.String}}</strong></a>
<span class="text-truncate">{{.LastCommit.Summary}}</span>
</span>
2014-10-12 02:02:48 +04:00
<span class="age right">{{TimeSince .LastCommit.Author.When $.Lang}}</span>
2014-07-26 08:24:27 +04:00
</th>
</tr>
</thead>
<tbody>
{{if .HasParentPath}}
<tr class="has-parent">
<td class="icon"></td>
2014-11-08 00:44:25 +03:00
<td class="name"><a href="{{EscapePound .BranchLink}}{{.ParentPath}}">..</a></td>
2014-07-26 08:24:27 +04:00
<td class="msg"></td>
<td class="age"></td>
</tr>
{{end}}
{{range $ item := .Files}}
{{ $ entry := index $ item 0}}
{{ $ commit := index $ item 1}}
<tr>
2014-09-22 06:43:16 +04:00
{{if $ entry . IsSubModule }}
<td class="icon">
<span class="octicon octicon-file-submodule"></span>
</td>
<td class="name">
2014-09-22 10:23:36 +04:00
<a href="{{ $ commit . RefUrl }}" class="text-truncate">{{ $ entry . Name }}</a> @ <a href="{{ $ commit . RefUrl }}/commit/{{ $ commit . RefId }}">{{ShortSha $ commit . RefId }}</a>
2014-09-22 06:43:16 +04:00
</td>
{{else}}
<td class="icon">
<span class="octicon octicon-file-{{if or $ entry . IsDir }}directory{{else}}text{{end}}"></span>
2014-07-26 08:24:27 +04:00
</td>
<td class="name">
2014-11-08 00:44:25 +03:00
<a href="{{EscapePound $.BranchLink}}/{{$.TreePath}}{{ $ entry . Name }}" class="text-truncate">{{ $ entry . Name }}</a>
2014-07-26 08:24:27 +04:00
</td>
2014-09-22 10:23:36 +04:00
{{end}}
2014-07-26 08:24:27 +04:00
<td class="msg">
2014-09-20 04:11:34 +04:00
<a class="text-truncate" href="{{AppSubUrl}}/{{$.Username}}/{{$.Reponame}}/commit/{{ $ commit . Id }}" rel="nofollow">{{ $ commit . Summary }}</a>
2014-07-26 08:24:27 +04:00
</td>
2014-10-12 02:02:48 +04:00
<td class="age">{{TimeSince $ commit . Committer . When $.Lang}}</td>
2014-07-26 08:24:27 +04:00
</tr>
{{end}}
</tbody>
</table>
{{if .ReadmeExist}}
{{template "repo/view_file" .}}
{{end}}