* Replace more icons with SVG - Replace remaining icons on admin page with SVG - Fix vertical menu background on arc-green - Minor improvments to frontpage repo search - More icon replacements here and there * fix integration * whitespace tweak * add comment Co-authored-by: techknowlogick <techknowlogick@gitea.io>
		
			
				
	
	
		
			99 lines
		
	
	
	
		
			3.9 KiB
		
	
	
	
		
			Cheetah
		
	
	
	
	
	
			
		
		
	
	
			99 lines
		
	
	
	
		
			3.9 KiB
		
	
	
	
		
			Cheetah
		
	
	
	
	
	
{{template "base/head" .}}
 | 
						|
<div class="page-content repository milestones">
 | 
						|
	{{template "repo/header" .}}
 | 
						|
	<div class="ui container">
 | 
						|
		<div class="navbar">
 | 
						|
			{{template "repo/issue/navbar" .}}
 | 
						|
			{{if and .CanWriteProjects (not .Repository.IsArchived)}}
 | 
						|
				<div class="ui right">
 | 
						|
					<a class="ui green button" href="{{$.Link}}/new">{{.i18n.Tr "repo.projects.new"}}</a>
 | 
						|
				</div>
 | 
						|
			{{end}}
 | 
						|
		</div>
 | 
						|
		<div class="ui divider"></div>
 | 
						|
		{{template "base/alert" .}}
 | 
						|
		<div class="ui compact tiny menu">
 | 
						|
			<a class="item{{if not .IsShowClosed}} active{{end}}" href="{{.RepoLink}}/projects?state=open">
 | 
						|
				{{svg "octicon-project" 16 "mr-2"}}
 | 
						|
				{{.i18n.Tr "repo.issues.open_tab" .OpenCount}}
 | 
						|
			</a>
 | 
						|
			<a class="item{{if .IsShowClosed}} active{{end}}" href="{{.RepoLink}}/projects?state=closed">
 | 
						|
				{{svg "octicon-check" 16 "mr-2"}}
 | 
						|
				{{.i18n.Tr "repo.milestones.close_tab" .ClosedCount}}
 | 
						|
			</a>
 | 
						|
		</div>
 | 
						|
 | 
						|
		<div class="ui right floated secondary filter menu">
 | 
						|
			<!-- Sort -->
 | 
						|
			<div class="ui dropdown type jump item">
 | 
						|
				<span class="text">
 | 
						|
					{{.i18n.Tr "repo.issues.filter_sort"}}
 | 
						|
					{{svg "octicon-triangle-down" 14 "dropdown icon"}}
 | 
						|
				</span>
 | 
						|
				<div class="menu">
 | 
						|
					<a class="{{if eq .SortType "oldest"}}active{{end}} item" href="{{$.Link}}?q={{$.Keyword}}&sort=oldest&state={{$.State}}">{{.i18n.Tr "repo.issues.filter_sort.oldest"}}</a>
 | 
						|
					<a class="{{if eq .SortType "recentupdate"}}active{{end}} item" href="{{$.Link}}?q={{$.Keyword}}&sort=recentupdate&state={{$.State}}">{{.i18n.Tr "repo.issues.filter_sort.recentupdate"}}</a>
 | 
						|
					<a class="{{if eq .SortType "leastupdate"}}active{{end}} item" href="{{$.Link}}?q={{$.Keyword}}&sort=leastupdate&state={{$.State}}">{{.i18n.Tr "repo.issues.filter_sort.leastupdate"}}</a>
 | 
						|
				</div>
 | 
						|
			</div>
 | 
						|
		</div>
 | 
						|
		<div class="milestone list">
 | 
						|
			{{range .Projects}}
 | 
						|
				<li class="item">
 | 
						|
					{{svg "octicon-project"}} <a href="{{$.RepoLink}}/projects/{{.ID}}">{{.Title}}</a>
 | 
						|
					<div class="meta">
 | 
						|
						{{ $closedDate:= TimeSinceUnix .ClosedDateUnix $.Lang }}
 | 
						|
						{{if .IsClosed }}
 | 
						|
							{{svg "octicon-clock"}} {{$.i18n.Tr "repo.milestones.closed" $closedDate|Str2html}}
 | 
						|
						{{end}}
 | 
						|
						<span class="issue-stats">
 | 
						|
							{{svg "octicon-issue-opened"}} {{$.i18n.Tr "repo.issues.open_tab" .NumOpenIssues}}
 | 
						|
							{{svg "octicon-issue-closed"}} {{$.i18n.Tr "repo.issues.close_tab" .NumClosedIssues}}
 | 
						|
						</span>
 | 
						|
					</div>
 | 
						|
					{{if and (or $.CanWriteIssues $.CanWritePulls) (not $.Repository.IsArchived)}}
 | 
						|
					<div class="ui right operate">
 | 
						|
						<a href="{{$.Link}}/{{.ID}}/edit" data-id={{.ID}} data-title={{.Title}}>{{svg "octicon-pencil"}} {{$.i18n.Tr "repo.issues.label_edit"}}</a>
 | 
						|
						{{if .IsClosed}}
 | 
						|
							<a class="link-action" href data-url="{{$.Link}}/{{.ID}}/open">{{svg "octicon-check"}} {{$.i18n.Tr "repo.projects.open"}}</a>
 | 
						|
						{{else}}
 | 
						|
							<a class="link-action" href data-url="{{$.Link}}/{{.ID}}/close">{{svg "octicon-skip"}} {{$.i18n.Tr "repo.projects.close"}}</a>
 | 
						|
						{{end}}
 | 
						|
						<a class="delete-button" href="#" data-url="{{$.RepoLink}}/projects/{{.ID}}/delete" data-id="{{.ID}}">{{svg "octicon-trashcan"}} {{$.i18n.Tr "repo.issues.label_delete"}}</a>
 | 
						|
					</div>
 | 
						|
					{{end}}
 | 
						|
					{{if .Description}}
 | 
						|
					<div class="content">
 | 
						|
						{{.RenderedContent|Str2html}}
 | 
						|
					</div>
 | 
						|
					{{end}}
 | 
						|
				</li>
 | 
						|
			{{end}}
 | 
						|
 | 
						|
			{{template "base/paginate" .}}
 | 
						|
		</div>
 | 
						|
	</div>
 | 
						|
</div>
 | 
						|
 | 
						|
{{if or .CanWriteIssues .CanWritePulls}}
 | 
						|
<div class="ui small basic delete modal">
 | 
						|
	<div class="ui icon header">
 | 
						|
		{{svg "octicon-trashcan"}}
 | 
						|
		{{.i18n.Tr "repo.projects.deletion"}}
 | 
						|
	</div>
 | 
						|
	<div class="content">
 | 
						|
		<p>{{.i18n.Tr "repo.projects.deletion_desc"}}</p>
 | 
						|
	</div>
 | 
						|
	<div class="actions">
 | 
						|
		<div class="ui red basic inverted cancel button">
 | 
						|
			<i class="remove icon"></i>
 | 
						|
			{{.i18n.Tr "modal.no"}}
 | 
						|
		</div>
 | 
						|
		<div class="ui green basic inverted ok button">
 | 
						|
			<i class="checkmark icon"></i>
 | 
						|
			{{.i18n.Tr "modal.yes"}}
 | 
						|
		</div>
 | 
						|
	</div>
 | 
						|
</div>
 | 
						|
{{end}}
 | 
						|
{{template "base/footer" .}}
 |