mirror of https://github.com/gogits/gogs.git
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
64 lines
2.6 KiB
64 lines
2.6 KiB
<table id="repo-files-table" class="ui table"> |
|
<thead> |
|
<tr> |
|
<th colspan="5" class="clear"> |
|
<span> |
|
{{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}} |
|
</span> |
|
<a class="text black" href="{{.RepoLink}}/commit/{{.LastCommit.ID}}" rel="nofollow"> |
|
<strong>{{ShortSha .LastCommit.ID.String}}</strong></a> |
|
<span class="text truncate grey" id="last-commit-message">{{RenderCommitMessage .LastCommit.Summary .RepoLink}}</span> |
|
<span class="ui right text grey age">{{TimeSince .LastCommit.Author.When $.Lang}}</span> |
|
</th> |
|
</tr> |
|
</thead> |
|
<tbody> |
|
{{if .HasParentPath}} |
|
<tr class="has-parent"> |
|
<td><span class="octicon octicon-mail-reply"></span></td> |
|
<td><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> |
|
</td> |
|
<td> |
|
{{if $commit.RefUrl}} |
|
<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> |
|
<span class="icon octicon octicon-file-{{if or $entry.IsDir}}directory{{else}}text{{end}}"></span> |
|
</td> |
|
<td class="name"> |
|
<a href="{{EscapePound $.BranchLink}}/{{EscapePound $.TreePath}}{{EscapePound $entry.Name}}" class="text truncate">{{$entry.Name}}</a> |
|
</td> |
|
{{end}} |
|
<td class="sha"> |
|
<a rel="nofollow" class="ui green sha label" 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> |
|
</td> |
|
<td class="text grey right age">{{TimeSince $commit.Committer.When $.Lang}}</td> |
|
</tr> |
|
{{end}} |
|
</tbody> |
|
</table> |
|
{{if .ReadmeExist}} |
|
{{template "repo/view_file" .}} |
|
{{end}}
|
|
|