aboutsummaryrefslogtreecommitdiffstats
path: root/templates/repo/view_list.tmpl
blob: 75269837cb86e1a41570d5d217d19854538b6015 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
<table id="repo-files-table" class="ui single line table fixed">
	<thead>
		<tr class="commit-list">
			<th colspan="2">
				{{if .LatestCommitUser}}
					<img class="ui avatar image img-12" src="{{.LatestCommitUser.RelAvatarLink}}" />
					{{if .LatestCommitUser.FullName}}
						<a href="{{AppSubUrl}}/{{.LatestCommitUser.Name}}"><strong>{{.LatestCommitUser.FullName}}</strong></a>
					{{else}}
						<a href="{{AppSubUrl}}/{{.LatestCommitUser.Name}}"><strong>{{if .LatestCommit.Author}}{{.LatestCommit.Author.Name}}{{else}}{{.LatestCommitUser.Name}}{{end}}</strong></a>
					{{end}}
				{{else}}
					{{if .LatestCommit.Author}}
						<img class="ui avatar image img-12" src="{{AvatarLink .LatestCommit.Author.Email}}" />
						<strong>{{.LatestCommit.Author.Name}}</strong>
					{{end}}
				{{end}}
				<a rel="nofollow" class="ui sha label {{if .LatestCommit.Signature}} isSigned {{if .LatestCommitVerification.Verified }} isVerified {{end}}{{end}}" href="{{.RepoLink}}/commit/{{.LatestCommit.ID}}">
						{{ShortSha .LatestCommit.ID.String}}
						{{if .LatestCommit.Signature}}
							<div class="ui detail icon button">
								{{if .LatestCommitVerification.Verified}}
									<i title="{{.LatestCommitVerification.Reason}}" class="lock green icon"></i>
								{{else}}
									<i title="{{$.i18n.Tr .LatestCommitVerification.Reason}}" class="unlock icon"></i>
								{{end}}
							</div>
						{{end}}
				</a>
				{{template "repo/commit_status" .LatestCommitStatus}}
				<span class="grey has-emoji commit-summary" title="{{.LatestCommit.Summary}}">{{.LatestCommit.Summary}}
				{{if IsMultilineCommitMessage .LatestCommit.Message}}
					<button class="basic compact mini ui icon button commit-button"><i class="ellipsis horizontal icon"></i></button>
					<pre class="commit-body" style="display: none;">{{RenderCommitBody .LatestCommit.Message $.RepoLink $.Repository.ComposeMetas}}</pre>
				{{end}}
			    </span>
			</th>
			<th class="text grey right age">{{if .LatestCommit.Author}}{{TimeSince .LatestCommit.Author.When $.Lang}}{{end}}</th>
		</tr>
	</thead>
	<tbody>
		{{if .HasParentPath}}
			<tr class="has-parent">
				<td colspan="3"><i class="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="truncate">
							<span class="octicon octicon-file-submodule"></span>
							{{$refURL := $commit.RefURL AppUrl $.BranchLink}}
							{{if $refURL}}
								<a href="{{$refURL}}">{{$entry.Name}}</a> @ <a href="{{$refURL}}/commit/{{$commit.RefID}}">{{ShortSha $commit.RefID}}</a>
							{{else}}
								{{$entry.Name}} @ {{ShortSha $commit.RefID}}
							{{end}}
						</span>
					</td>
				{{else}}
					<td class="name">
						<span class="truncate">
							{{if $entry.IsDir}}
								{{$subJumpablePathName := $entry.GetSubJumpablePathName}}
								{{$subJumpablePath := SubJumpablePath $subJumpablePathName}}
								<span class="octicon octicon-file-directory"></span>
								<a href="{{EscapePound $.TreeLink}}/{{EscapePound $subJumpablePathName}}" title="{{$subJumpablePathName}}">
									{{if eq (len $subJumpablePath) 2}}
										<span class="jumpable-path">{{index  $subJumpablePath 0}}</span>{{index  $subJumpablePath 1}}
									{{else}}
										{{index $subJumpablePath 0}}
									{{end}}
								</a>
							{{else}}
								<span class="octicon octicon-{{EntryIcon $entry}}"></span>
								<a href="{{EscapePound $.TreeLink}}/{{EscapePound $entry.Name}}" title="{{$entry.Name}}">{{$entry.Name}}</a>
							{{end}}
						</span>
					</td>
				{{end}}
				<td class="message has-emoji">
					<span class="truncate">
						<a href="{{$.RepoLink}}/commit/{{$commit.ID}}" title="{{$commit.Summary}}">{{$commit.Summary}}</a>
					</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}}