2014-07-26 04:24:27 +00: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 12:55:13 +00:00
|
|
|
{{if .LastCommitUser}}<a href="{{AppSubUrl}}/{{.LastCommitUser}}">{{end}}<strong>{{.LastCommit.Author.Name}}</strong>:{{if .LastCommitUser}}</a>{{end}}
|
2014-07-26 04:24:27 +00: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-11 22:02:48 +00:00
|
|
|
<span class="age right">{{TimeSince .LastCommit.Author.When $.Lang}}</span>
|
2014-07-26 04:24:27 +00:00
|
|
|
</th>
|
|
|
|
</tr>
|
|
|
|
</thead>
|
|
|
|
<tbody>
|
|
|
|
{{if .HasParentPath}}
|
|
|
|
<tr class="has-parent">
|
|
|
|
<td class="icon"></td>
|
2014-11-07 21:44:25 +00:00
|
|
|
<td class="name"><a href="{{EscapePound .BranchLink}}{{.ParentPath}}">..</a></td>
|
2014-07-26 04:24:27 +00: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 02:43:16 +00:00
|
|
|
{{if $entry.IsSubModule}}
|
|
|
|
<td class="icon">
|
|
|
|
<span class="octicon octicon-file-submodule"></span>
|
|
|
|
</td>
|
|
|
|
<td class="name">
|
2014-09-22 06:23:36 +00: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 02:43:16 +00:00
|
|
|
</td>
|
|
|
|
{{else}}
|
|
|
|
<td class="icon">
|
|
|
|
<span class="octicon octicon-file-{{if or $entry.IsDir}}directory{{else}}text{{end}}"></span>
|
2014-07-26 04:24:27 +00:00
|
|
|
</td>
|
|
|
|
<td class="name">
|
2014-11-07 21:44:25 +00:00
|
|
|
<a href="{{EscapePound $.BranchLink}}/{{$.TreePath}}{{$entry.Name}}" class="text-truncate">{{$entry.Name}}</a>
|
2014-07-26 04:24:27 +00:00
|
|
|
</td>
|
2014-09-22 06:23:36 +00:00
|
|
|
{{end}}
|
2014-07-26 04:24:27 +00:00
|
|
|
<td class="msg">
|
2014-09-20 00:11:34 +00:00
|
|
|
<a class="text-truncate" href="{{AppSubUrl}}/{{$.Username}}/{{$.Reponame}}/commit/{{$commit.Id}}" rel="nofollow">{{$commit.Summary}}</a>
|
2014-07-26 04:24:27 +00:00
|
|
|
</td>
|
2014-10-11 22:02:48 +00:00
|
|
|
<td class="age">{{TimeSince $commit.Committer.When $.Lang}}</td>
|
2014-07-26 04:24:27 +00:00
|
|
|
</tr>
|
|
|
|
{{end}}
|
|
|
|
</tbody>
|
|
|
|
</table>
|
|
|
|
{{if .ReadmeExist}}
|
|
|
|
{{template "repo/view_file" .}}
|
|
|
|
{{end}}
|