Co-authored-by: 6543 <6543@obermui.de> Co-authored-by: jaqra <48099350+jaqra@users.noreply.github.com> Co-authored-by: Kerry <flatline-studios@users.noreply.github.com> Co-authored-by: Jaqra <jaqra@hotmail.com> Co-authored-by: Kyle Evans <kevans91@users.noreply.github.com> Co-authored-by: Tsakiridis Ilias <TsakiDev@users.noreply.github.com> Co-authored-by: Ilias Tsakiridis <ilias.tsakiridis@outlook.com> Co-authored-by: Lunny Xiao <xiaolunwen@gmail.com> Co-authored-by: silverwind <me@silverwind.io> Co-authored-by: zeripath <art27@cantab.net> Co-authored-by: techknowlogick <techknowlogick@gitea.io>
		
			
				
	
	
		
			70 lines
		
	
	
	
		
			2.4 KiB
		
	
	
	
		
			Cheetah
		
	
	
	
	
	
			
		
		
	
	
			70 lines
		
	
	
	
		
			2.4 KiB
		
	
	
	
		
			Cheetah
		
	
	
	
	
	
{{template "base/head" .}}
 | 
						|
<div class="repository new milestone">
 | 
						|
	{{template "repo/header" .}}
 | 
						|
	<div class="ui container">
 | 
						|
		<div class="navbar">
 | 
						|
			{{template "repo/issue/navbar" .}}
 | 
						|
			{{if and (or .CanWriteIssues .CanWritePulls) .PageIsEditProject}}
 | 
						|
			<div class="ui right floated secondary menu">
 | 
						|
				<a class="ui green button" href="{{$.RepoLink}}/projects/new">{{.i18n.Tr "repo.milestones.new"}}</a>
 | 
						|
			</div>
 | 
						|
			{{end}}
 | 
						|
		</div>
 | 
						|
		<div class="ui divider"></div>
 | 
						|
		<h2 class="ui dividing header">
 | 
						|
			{{if .PageIsEditProjects}}
 | 
						|
			{{.i18n.Tr "repo.projects.edit"}}
 | 
						|
			<div class="sub header">{{.i18n.Tr "repo.projects.edit_subheader"}}</div>
 | 
						|
			{{else}}
 | 
						|
				{{.i18n.Tr "repo.projects.new"}}
 | 
						|
				<div class="sub header">{{.i18n.Tr "repo.projects.new_subheader"}}</div>
 | 
						|
				{{end}}
 | 
						|
		</h2>
 | 
						|
		{{template "base/alert" .}}
 | 
						|
		<form class="ui form grid" action="{{.Link}}" method="post">
 | 
						|
			{{.CsrfTokenHtml}}
 | 
						|
			<div class="eleven wide column">
 | 
						|
				<div class="field {{if .Err_Title}}error{{end}}">
 | 
						|
					<label>{{.i18n.Tr "repo.projects.title"}}</label>
 | 
						|
					<input name="title" placeholder="{{.i18n.Tr "repo.projects.title"}}" value="{{.title}}" autofocus required>
 | 
						|
				</div>
 | 
						|
				<div class="field">
 | 
						|
					<label>{{.i18n.Tr "repo.projects.desc"}}</label>
 | 
						|
					<textarea name="content">{{.content}}</textarea>
 | 
						|
				</div>
 | 
						|
 | 
						|
				{{if not .PageIsEditProjects}}
 | 
						|
					<label>{{.i18n.Tr "repo.projects.template.desc"}}</label>
 | 
						|
					<div class="ui selection dropdown">
 | 
						|
						<input type="hidden" name="board_type" value="{{.type}}">
 | 
						|
						<div class="default text">{{.i18n.Tr "repo.projects.template.desc_helper"}}</div>
 | 
						|
						<div class="menu">
 | 
						|
							{{range $element := .ProjectTypes}}
 | 
						|
								<div class="item" data-id="{{$element.BoardType}}" data-value="{{$element.BoardType}}">{{$.i18n.Tr $element.Translation}}</div>
 | 
						|
							{{end}}
 | 
						|
						</div>
 | 
						|
					</div>
 | 
						|
				{{end}}
 | 
						|
			</div>
 | 
						|
			<div class="ui container">
 | 
						|
				<div class="ui divider"></div>
 | 
						|
				<div class="ui left">
 | 
						|
					{{if .PageIsEditProjects}}
 | 
						|
					<a class="ui blue basic button" href="{{.RepoLink}}/projects">
 | 
						|
						{{.i18n.Tr "repo.milestones.cancel"}}
 | 
						|
					</a>
 | 
						|
					<button class="ui green button">
 | 
						|
						{{.i18n.Tr "repo.projects.modify"}}
 | 
						|
					</button>
 | 
						|
					{{else}}
 | 
						|
						<button class="ui green button">
 | 
						|
							{{.i18n.Tr "repo.projects.create"}}
 | 
						|
						</button>
 | 
						|
					{{end}}
 | 
						|
				</div>
 | 
						|
			</div>
 | 
						|
 | 
						|
		</form>
 | 
						|
	</div>
 | 
						|
</div>
 | 
						|
{{template "base/footer" .}}
 |