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.
		
		
		
		
		
			
		
			
				
					
					
						
							36 lines
						
					
					
						
							1.8 KiB
						
					
					
				
			
		
		
	
	
							36 lines
						
					
					
						
							1.8 KiB
						
					
					
				<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>
 | 
						|
					 
 | 
						|
					<div class="ui checkbox">
 | 
						|
						<input type="checkbox" name="all" id="all" value="true" {{.All}}>
 | 
						|
						<label for="all">{{.i18n.Tr "repo.commits.search_all"}}   </label>
 | 
						|
					</div>
 | 
						|
					<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>
 | 
						|
				</form>
 | 
						|
			{{else if .IsDiffCompare}}
 | 
						|
				<a href="{{$.CommitRepoLink}}/commit/{{.BeforeCommitID}}" class="ui green sha label">{{if not .BaseIsCommit}}{{if .BaseIsBranch}}{{svg "octicon-git-branch" 16}}{{else if .BaseIsTag}}{{svg "octicon-tag" 16}}{{end}}{{.BaseBranch}}{{else}}{{ShortSha .BaseBranch}}{{end}}</a>
 | 
						|
				...
 | 
						|
				<a href="{{$.CommitRepoLink}}/commit/{{.AfterCommitID}}" class="ui green sha label">{{if not .HeadIsCommit}}{{if .HeadIsBranch}}{{svg "octicon-git-branch" 16}}{{else if .HeadIsTag}}{{svg "octicon-tag" 16}}{{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" .}}
 | 
						|
 |