gitea/templates/repo/view_list.tmpl

69 lines
3.0 KiB
Cheetah
Raw Normal View History

2014-07-26 06:24:27 +02:00
<table id="repo-files-table" class="table-border table-block table-radius">
<thead>
<tr>
2014-12-09 08:18:25 +01:00
<th colspan="5" class="clear">
2014-07-26 06:24:27 +02:00
<span class="author left">
2014-11-21 16:58:08 +01:00
{{if .LastCommitUser}}
<img class="avatar-24 radius" src="{{.LastCommitUser.AvatarLink}}" />
<a href="{{AppSubUrl}}/{{.LastCommitUser.Name}}"><strong>{{.LastCommit.Author.Name}}</strong></a>:
{{else}}
2014-07-26 06:24:27 +02:00
<img class="avatar-24 radius" src="{{AvatarLink .LastCommit.Author.Email}}" />
2014-11-21 16:58:08 +01:00
<strong>{{.LastCommit.Author.Name}}</strong>:
{{end}}
&nbsp;
2014-07-26 06:24:27 +02: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">{{RenderCommitMessage .LastCommit.Summary .RepoLink}}</span>
2014-07-26 06:24:27 +02:00
</span>
<span class="age right">{{TimeSince .LastCommit.Author.When $.Lang}}</span>
2014-07-26 06:24:27 +02:00
</th>
</tr>
</thead>
<tbody>
{{if .HasParentPath}}
<tr class="has-parent">
<td class="icon"></td>
2014-11-07 22:44:25 +01:00
<td class="name"><a href="{{EscapePound .BranchLink}}{{.ParentPath}}">..</a></td>
<th class="sha">SHA1</th>
2014-07-26 06:24:27 +02:00
<td class="msg"></td>
<td class="age"></td>
</tr>
{{end}}
{{range $item := .Files}}
{{$entry := index $item 0}}
{{$commit := index $item 1}}
<tr>
{{if $entry.IsSubModule}}
<td class="icon">
<span class="octicon octicon-file-submodule"></span>
</td>
<td class="name">
{{if $commit.RefUrl}}
2014-09-22 08:23:36 +02:00
<a href="{{$commit.RefUrl}}" class="text-truncate">{{$entry.Name}}</a> @ <a href="{{$commit.RefUrl}}/commit/{{$commit.RefId}}">{{ShortSha $commit.RefId}}</a>
{{else}}
{{$entry.Name}} @ {{ShortSha $commit.RefId}}
{{end}}
</td>
{{else}}
<td class="icon">
<span class="octicon octicon-file-{{if or $entry.IsDir}}directory{{else}}text{{end}}"></span>
2014-07-26 06:24:27 +02:00
</td>
<td class="name">
2014-11-07 22:44:25 +01:00
<a href="{{EscapePound $.BranchLink}}/{{$.TreePath}}{{$entry.Name}}" class="text-truncate">{{$entry.Name}}</a>
2014-07-26 06:24:27 +02:00
</td>
2014-09-22 08:23:36 +02:00
{{end}}
<td class="sha">
<a rel="nofollow" class="label label-green" href="{{AppSubUrl}}/{{$.Username}}/{{$.Reponame}}/commit/{{$commit.Id}} ">{{SubStr $commit.Id.String 0 10}} </a>
</td>
<td class="message">
<span class="text-truncate">{{RenderCommitMessage $commit.Summary $.RepoLink}}</span>
2014-07-26 06:24:27 +02:00
</td>
<td class="age">{{TimeSince $commit.Committer.When $.Lang}}</td>
2014-07-26 06:24:27 +02:00
</tr>
{{end}}
</tbody>
</table>
{{if .ReadmeExist}}
{{template "repo/view_file" .}}
{{end}}