aboutsummaryrefslogtreecommitdiffstats
path: root/templates/repo/commits_table.tmpl
blob: 93c321cbe7b78354768175e35da98ca3f7d25882 (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
<h4 class="ui top attached header">
	<div class="ui stackable grid">
		<div class="five wide column">
			{{if or .PageIsCommits (gt .CommitCount 0)}}
				{{.CommitCount}} {{.i18n.Tr "repo.commits.commits"}} {{if .Branch}}({{.Branch}}){{end}}
			{{else}}
				{{.i18n.Tr "repo.commits.no_commits" $.BaseBranch $.HeadBranch }} {{if .Branch}}({{.Branch}}){{end}}
			{{end}}
		</div>
		<div class="eleven wide right aligned column">
			{{if .PageIsCommits}}
				<form class="ignore-dirty" action="{{.RepoLink}}/commits/{{.BranchNameSubURL | EscapePound}}/search">
					<div class="ui tiny search input">
						<input name="q" placeholder="{{.i18n.Tr "repo.commits.search"}}" value="{{.Keyword}}" autofocus>
					</div>
					&nbsp;
					<div class="ui checkbox">
						<input type="checkbox" name="all" id="all" value="true" {{.All}}>
						<label for="all">{{.i18n.Tr "repo.commits.search_all"}} &nbsp;&nbsp;</label>
					</div>
					<button class="ui black tiny button" data-panel="#add-deploy-key-panel" data-tooltip={{.i18n.Tr "repo.commits.search.tooltip"}}>{{.i18n.Tr "repo.commits.find"}}</button>
				</form>
			{{else if .IsDiffCompare}}
				<a href="{{$.CommitRepoLink}}/commit/{{.BeforeCommitID}}" class="ui green sha label">{{if not .BaseIsCommit}}{{if .BaseIsBranch}}<i class="octicon octicon-git-branch"></i>{{else if .BaseIsTag}}<i class="octicon octicon-tag"></i>{{end}}{{.BaseBranch}}{{else}}{{ShortSha .BaseBranch}}{{end}}</a>
				...
				<a href="{{$.CommitRepoLink}}/commit/{{.AfterCommitID}}" class="ui green sha label">{{if not .HeadIsCommit}}{{if .HeadIsBranch}}<i class="octicon octicon-git-branch"></i>{{else if .HeadIsTag}}<i class="octicon octicon-tag"></i>{{end}}{{.HeadBranch}}{{else}}{{ShortSha .HeadBranch}}{{end}}</a>
			{{end}}
		</div>
	</div>
</h4>

{{if and .Commits (gt .CommitCount 0)}}
    {{template "repo/commits_list" .}}
{{end}}

{{template "base/paginate" .}}