Files
Atay-Makhzan/templates/repo/commits_table.tmpl
T

37 lines
1.8 KiB
Cheetah
Raw Normal View History

2015-08-20 20:18:49 +08:00
<h4 class="ui top attached header">
2017-12-31 01:47:52 +01:00
<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}}
2015-12-07 23:30:52 +01:00
</div>
<div class="eleven wide right aligned column">
2017-12-31 01:47:52 +01:00
{{if .PageIsCommits}}
<form class="ignore-dirty" action="{{.RepoLink}}/commits/{{.BranchNameSubURL | EscapePound}}/search">
2017-12-31 01:47:52 +01:00
<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>
2019-12-04 04:39:58 +03:00
<button class="ui blue tiny button" data-panel="#add-deploy-key-panel" data-tooltip={{.i18n.Tr "repo.commits.search.tooltip"}}>{{.i18n.Tr "repo.commits.find"}}</button>
2017-12-31 01:47:52 +01:00
</form>
{{else if .IsDiffCompare}}
2020-09-11 22:19:00 +02:00
<a href="{{$.CommitRepoLink}}/commit/{{.BeforeCommitID}}" class="ui green sha label">{{if not .BaseIsCommit}}{{if .BaseIsBranch}}{{svg "octicon-git-branch"}}{{else if .BaseIsTag}}{{svg "octicon-tag"}}{{end}}{{.BaseBranch}}{{else}}{{ShortSha .BaseBranch}}{{end}}</a>
...
2020-09-11 22:19:00 +02:00
<a href="{{$.CommitRepoLink}}/commit/{{.AfterCommitID}}" class="ui green sha label">{{if not .HeadIsCommit}}{{if .HeadIsBranch}}{{svg "octicon-git-branch"}}{{else if .HeadIsTag}}{{svg "octicon-tag"}}{{end}}{{.HeadBranch}}{{else}}{{ShortSha .HeadBranch}}{{end}}</a>
2017-12-31 01:47:52 +01:00
{{end}}
</div>
</div>
2015-08-20 20:18:49 +08:00
</h4>
2015-09-01 19:07:02 -04:00
{{if and .Commits (gt .CommitCount 0)}}
{{template "repo/commits_list" .}}
2015-09-01 19:07:02 -04:00
{{end}}
2015-08-20 20:18:49 +08:00
{{template "base/paginate" .}}