2020-08-17 08:37:38 +05:30
|
|
|
{{template "base/head" .}}
|
2023-02-02 04:26:10 +05:30
|
|
|
<div role="main" aria-label="{{.Title}}" class="page-content repository projects edit-project new milestone">
|
2020-08-17 08:37:38 +05:30
|
|
|
{{template "repo/header" .}}
|
|
|
|
<div class="ui container">
|
|
|
|
<div class="navbar">
|
|
|
|
{{template "repo/issue/navbar" .}}
|
2020-08-22 12:28:59 +05:30
|
|
|
{{if and .CanWriteProjects .PageIsEditProject}}
|
2020-08-17 08:37:38 +05:30
|
|
|
<div class="ui right floated secondary menu">
|
2022-06-28 02:28:46 +05:30
|
|
|
<a class="ui green button" href="{{$.RepoLink}}/projects/new">{{.locale.Tr "repo.milestones.new"}}</a>
|
2020-08-17 08:37:38 +05:30
|
|
|
</div>
|
|
|
|
{{end}}
|
|
|
|
</div>
|
|
|
|
<div class="ui divider"></div>
|
|
|
|
<h2 class="ui dividing header">
|
|
|
|
{{if .PageIsEditProjects}}
|
2022-06-28 02:28:46 +05:30
|
|
|
{{.locale.Tr "repo.projects.edit"}}
|
|
|
|
<div class="sub header">{{.locale.Tr "repo.projects.edit_subheader"}}</div>
|
2020-08-17 08:37:38 +05:30
|
|
|
{{else}}
|
2022-06-28 02:28:46 +05:30
|
|
|
{{.locale.Tr "repo.projects.new"}}
|
|
|
|
<div class="sub header">{{.locale.Tr "repo.projects.new_subheader"}}</div>
|
2020-08-17 08:37:38 +05:30
|
|
|
{{end}}
|
|
|
|
</h2>
|
|
|
|
{{template "base/alert" .}}
|
|
|
|
<form class="ui form grid" action="{{.Link}}" method="post">
|
|
|
|
{{.CsrfTokenHtml}}
|
|
|
|
<div class="eleven wide column">
|
2023-03-09 20:08:29 +05:30
|
|
|
<input type="hidden" id="redirect" name="redirect" value="{{.redirect}}">
|
2020-08-17 08:37:38 +05:30
|
|
|
<div class="field {{if .Err_Title}}error{{end}}">
|
2022-06-28 02:28:46 +05:30
|
|
|
<label>{{.locale.Tr "repo.projects.title"}}</label>
|
|
|
|
<input name="title" placeholder="{{.locale.Tr "repo.projects.title"}}" value="{{.title}}" autofocus required>
|
2020-08-17 08:37:38 +05:30
|
|
|
</div>
|
|
|
|
<div class="field">
|
2022-06-28 02:28:46 +05:30
|
|
|
<label>{{.locale.Tr "repo.projects.description"}}</label>
|
|
|
|
<textarea name="content" placeholder="{{.locale.Tr "repo.projects.description_placeholder"}}">{{.content}}</textarea>
|
2020-08-17 08:37:38 +05:30
|
|
|
</div>
|
|
|
|
|
|
|
|
{{if not .PageIsEditProjects}}
|
2023-02-11 13:42:41 +05:30
|
|
|
<div class="field">
|
|
|
|
<label>{{.locale.Tr "repo.projects.template.desc"}}</label>
|
|
|
|
<div class="ui selection dropdown">
|
|
|
|
<input type="hidden" name="board_type" value="{{.type}}">
|
|
|
|
<div class="default text">{{.locale.Tr "repo.projects.template.desc_helper"}}</div>
|
|
|
|
<div class="menu">
|
|
|
|
{{range $element := .BoardTypes}}
|
|
|
|
<div class="item" data-id="{{$element.BoardType}}" data-value="{{$element.BoardType}}">{{$.locale.Tr $element.Translation}}</div>
|
|
|
|
{{end}}
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
{{end}}
|
|
|
|
|
|
|
|
<div class="field">
|
|
|
|
<label>{{.locale.Tr "repo.projects.card_type.desc"}}</label>
|
2020-08-17 08:37:38 +05:30
|
|
|
<div class="ui selection dropdown">
|
2023-02-11 13:42:41 +05:30
|
|
|
{{svg "octicon-triangle-down" 14 "dropdown icon"}}
|
|
|
|
{{range $element := .CardTypes}}
|
2023-03-27 10:45:41 +05:30
|
|
|
{{if or (eq $.card_type $element.CardType) (and (not $.PageIsEditProjects) (eq $element.CardType 1))}}
|
2023-02-11 13:42:41 +05:30
|
|
|
<input type="hidden" name="card_type" value="{{$element.CardType}}">
|
|
|
|
<div class="default text">{{$.locale.Tr $element.Translation}}</div>
|
|
|
|
{{end}}
|
|
|
|
{{end}}
|
2020-08-17 08:37:38 +05:30
|
|
|
<div class="menu">
|
2023-02-11 13:42:41 +05:30
|
|
|
{{range $element := .CardTypes}}
|
|
|
|
<div class="item" data-id="{{$element.CardType}}" data-value="{{$element.CardType}}">{{$.locale.Tr $element.Translation}}</div>
|
2020-08-17 08:37:38 +05:30
|
|
|
{{end}}
|
|
|
|
</div>
|
|
|
|
</div>
|
2023-02-11 13:42:41 +05:30
|
|
|
</div>
|
|
|
|
|
2020-08-17 08:37:38 +05:30
|
|
|
</div>
|
|
|
|
<div class="ui container">
|
|
|
|
<div class="ui divider"></div>
|
|
|
|
<div class="ui left">
|
|
|
|
{{if .PageIsEditProjects}}
|
2023-03-24 14:07:56 +05:30
|
|
|
<a class="ui cancel button" href="{{.RepoLink}}/projects{{if eq .redirect "project"}}/{{.projectID}}{{end}}">
|
2022-06-28 02:28:46 +05:30
|
|
|
{{.locale.Tr "repo.milestones.cancel"}}
|
2020-08-17 08:37:38 +05:30
|
|
|
</a>
|
2023-02-25 04:40:50 +05:30
|
|
|
<button class="ui primary button">
|
2022-06-28 02:28:46 +05:30
|
|
|
{{.locale.Tr "repo.projects.modify"}}
|
2020-08-17 08:37:38 +05:30
|
|
|
</button>
|
|
|
|
{{else}}
|
2023-02-25 04:40:50 +05:30
|
|
|
<button class="ui primary button">
|
2022-06-28 02:28:46 +05:30
|
|
|
{{.locale.Tr "repo.projects.create"}}
|
2020-08-17 08:37:38 +05:30
|
|
|
</button>
|
|
|
|
{{end}}
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
|
|
|
|
</form>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
{{template "base/footer" .}}
|