Files

74 lines
3.1 KiB
Handlebars
Raw Permalink Normal View History

2023-07-08 02:06:49 +08:00
<h2 class="ui dividing header">
{{if .PageIsEditProjects}}
2023-08-12 12:30:28 +02:00
{{ctx.Locale.Tr "repo.projects.edit"}}
<div class="sub header">{{ctx.Locale.Tr "repo.projects.edit_subheader"}}</div>
2023-07-08 02:06:49 +08:00
{{else}}
2023-08-12 12:30:28 +02:00
{{ctx.Locale.Tr "repo.projects.new"}}
<div class="sub header">{{ctx.Locale.Tr "repo.projects.new_subheader"}}</div>
2023-07-08 02:06:49 +08:00
{{end}}
</h2>
{{template "base/alert" .}}
<form class="ui form" action="{{.Link}}" method="post">
<div>
2023-07-08 02:06:49 +08:00
<input type="hidden" id="redirect" name="redirect" value="{{.redirect}}">
<div class="field {{if .Err_Title}}error{{end}}">
2023-08-12 12:30:28 +02:00
<label>{{ctx.Locale.Tr "repo.projects.title"}}</label>
<input name="title" placeholder="{{ctx.Locale.Tr "repo.projects.title"}}" value="{{.title}}" autofocus required>
2023-07-08 02:06:49 +08:00
</div>
<div class="field">
2023-08-12 12:30:28 +02:00
<label>{{ctx.Locale.Tr "repo.projects.description"}}</label>
{{/* TODO: repo-level project and org-level project have different behaviors to render */}}
2026-03-07 21:37:37 +01:00
{{/* "Repository" is nil when the project is owner-level, "Org" can be nil when owner is indivdual user */}}
{{$markdownEditorContext := or (ctx.MiscUtils.MarkdownEditorComment $.Repository) (ctx.MiscUtils.MarkdownEditorGeneral $.ContextUser)}}
{{template "shared/combomarkdowneditor" (dict
2026-03-07 21:37:37 +01:00
"MarkdownEditorContext" $markdownEditorContext
"TextareaName" "content"
"TextareaContent" .content
"TextareaPlaceholder" (ctx.Locale.Tr "repo.projects.description_placeholder")
)}}
2023-07-08 02:06:49 +08:00
</div>
2023-07-08 02:06:49 +08:00
{{if not .PageIsEditProjects}}
<div class="field">
2023-08-12 12:30:28 +02:00
<label>{{ctx.Locale.Tr "repo.projects.template.desc"}}</label>
<div class="ui selection dropdown">
<input type="hidden" name="template_type" value="{{.type}}">
2023-08-12 12:30:28 +02:00
<div class="default text">{{ctx.Locale.Tr "repo.projects.template.desc_helper"}}</div>
<div class="menu">
{{range $element := .TemplateConfigs}}
<div class="item" data-id="{{$element.TemplateType}}" data-value="{{$element.TemplateType}}">{{ctx.Locale.Tr $element.Translation}}</div>
{{end}}
</div>
2023-01-20 19:42:33 +08:00
</div>
</div>
2023-07-08 02:06:49 +08:00
{{end}}
<div class="field">
2023-08-12 12:30:28 +02:00
<label>{{ctx.Locale.Tr "repo.projects.card_type.desc"}}</label>
2023-07-08 02:06:49 +08:00
<div class="ui selection dropdown">
{{svg "octicon-triangle-down" 14 "dropdown icon"}}
{{range $element := .CardTypes}}
{{if or (eq $.card_type $element.CardType) (and (not $.PageIsEditProjects) (eq $element.CardType 1))}}
<input type="hidden" name="card_type" value="{{$element.CardType}}">
2023-09-26 15:10:29 +02:00
<div class="default text">{{ctx.Locale.Tr $element.Translation}}</div>
2023-07-08 02:06:49 +08:00
{{end}}
{{end}}
<div class="menu">
{{range $element := .CardTypes}}
2023-09-26 15:10:29 +02:00
<div class="item" data-id="{{$element.CardType}}" data-value="{{$element.CardType}}">{{ctx.Locale.Tr $element.Translation}}</div>
2023-07-08 02:06:49 +08:00
{{end}}
</div>
</div>
2023-07-08 02:06:49 +08:00
</div>
</div>
<div class="divider"></div>
<div class="flex-text-block tw-justify-end">
2023-07-08 02:06:49 +08:00
<a class="ui cancel button" href="{{$.CancelLink}}">
2023-08-12 12:30:28 +02:00
{{ctx.Locale.Tr "repo.milestones.cancel"}}
2023-07-08 02:06:49 +08:00
</a>
<button class="ui primary button">
2023-08-12 12:30:28 +02:00
{{if .PageIsEditProjects}}{{ctx.Locale.Tr "repo.projects.modify"}}{{else}}{{ctx.Locale.Tr "repo.projects.create"}}{{end}}
2023-07-08 02:06:49 +08:00
</button>
</div>
</form>