mirror of
https://github.com/go-gitea/gitea
synced 2024-10-31 23:34:25 +00:00
d55a0b7238
* Refactor `i18n` to `locale` - Currently we're using the `i18n` variable naming for the `locale` struct. This contains locale's specific information and cannot be used for general i18n purpose, therefore refactoring it to `locale` makes more sense. - Ref: https://github.com/go-gitea/gitea/pull/20096#discussion_r906699200 * Update routers/install/install.go
28 lines
1.1 KiB
Handlebars
28 lines
1.1 KiB
Handlebars
<div class="ui new-label segment hide">
|
|
<form class="ui form" action="{{$.Link}}/new" method="post">
|
|
{{.CsrfTokenHtml}}
|
|
<div class="ui grid">
|
|
<div class="three wide column">
|
|
<div class="ui small input">
|
|
<input class="new-label-input emoji-input" name="title" placeholder="{{.locale.Tr "repo.issues.new_label_placeholder"}}" autofocus required maxlength="50">
|
|
</div>
|
|
</div>
|
|
<div class="three wide column">
|
|
<div class="ui small fluid input">
|
|
<input class="new-label-desc-input" name="description" placeholder="{{.locale.Tr "repo.issues.new_label_desc_placeholder"}}" maxlength="200">
|
|
</div>
|
|
</div>
|
|
<div class="color picker column">
|
|
<input class="color-picker" name="color" value="#70c24a" required maxlength="7">
|
|
</div>
|
|
<div class="column precolors">
|
|
{{template "repo/issue/label_precolors"}}
|
|
</div>
|
|
<div class="buttons">
|
|
<div class="ui secondary small basic cancel button">{{.locale.Tr "repo.milestones.cancel"}}</div>
|
|
<button class="ui primary small button">{{.locale.Tr "repo.issues.create_label"}}</button>
|
|
</div>
|
|
</div>
|
|
</form>
|
|
</div>
|