mirror of
https://github.com/go-gitea/gitea
synced 2024-11-01 15:54:25 +00:00
d848098f60
* Enforce tab indendation in templates This adds editorconfig-checker [1] to lint the template files so they conform the editorconfig files. I fixed all current identation issues using the fix mode of eclint [2] and some manual corrections. We can extend this linting to other files later, for now I'd like this PR to focus on HTML template files only. [1] https://github.com/editorconfig-checker/editorconfig-checker [2] https://github.com/jedmao/eclint * fix indendation Co-authored-by: zeripath <art27@cantab.net> Co-authored-by: techknowlogick <techknowlogick@gitea.io>
30 lines
1.1 KiB
Handlebars
30 lines
1.1 KiB
Handlebars
<div class="ui centered grid">
|
|
<div class="twelve wide computer column">
|
|
<div class="ui attached left aligned segment">
|
|
<!-- <h4 class="ui header">
|
|
{{.i18n.Tr "repo.issues.label_templates.title"}}
|
|
<a target="_blank" rel="noopener noreferrer" href="https://discuss.gogs.io/t/how-to-use-predefined-label-templates/599">
|
|
<span class="octicon octicon-question"></span>
|
|
</a>
|
|
</h4> -->
|
|
<p>{{.i18n.Tr "repo.issues.label_templates.info"}}</p>
|
|
<br/>
|
|
<form class="ui form center" action="{{.Link}}/initialize" method="post">
|
|
{{.CsrfTokenHtml}}
|
|
<div class="field">
|
|
<div class="ui selection dropdown">
|
|
<input type="hidden" name="template_name" value="Default">
|
|
<div class="default text">{{.i18n.Tr "repo.issues.label_templates.helper"}}</div>
|
|
<div class="menu">
|
|
{{range $template, $labels := .LabelTemplates}}
|
|
<div class="item" data-value="{{$template}}">{{$template}}<br/><i>({{$labels}})</i></div>
|
|
{{end}}
|
|
</div>
|
|
</div>
|
|
</div>
|
|
<button type="submit" class="ui blue button">{{.i18n.Tr "repo.issues.label_templates.use"}}</button>
|
|
</form>
|
|
</div>
|
|
</div>
|
|
</div>
|