mirror of
https://codeberg.org/forgejo/forgejo.git
synced 2024-10-30 17:34:13 +01:00
2e542f17a3
Get rid of one more jQuery dependant and have a nicer color picker as well. Now there is only a single global color picker init because that is all that's necessary because the elements are present on the page when the init code runs. The init is slightly weird because the module only takes a selector instead of DOM elements directly. The label modals now also perform form validation because previously it was possible to trigger a 500 error `Color cannot be empty.` by clearing out the color value on labels. <img width="867" alt="Screenshot 2024-03-25 at 00 21 05" src="https://github.com/go-gitea/gitea/assets/115237/71215c39-abb1-4881-b5c1-9954b4a89adb"> <img width="860" alt="Screenshot 2024-03-25 at 00 20 48" src="https://github.com/go-gitea/gitea/assets/115237/a12cb68f-c38b-4433-ba05-53bbb4b1023e"> (cherry picked from commit dd8dde2be89921b2b1497c6cc5eafdde213429cb)
72 lines
2.7 KiB
Go HTML Template
72 lines
2.7 KiB
Go HTML Template
<div class="ui g-modal-confirm delete modal">
|
|
<div class="header">
|
|
{{svg "octicon-trash"}}
|
|
{{ctx.Locale.Tr "repo.issues.label_deletion"}}
|
|
</div>
|
|
<div class="content">
|
|
<p>{{ctx.Locale.Tr "repo.issues.label_deletion_desc"}}</p>
|
|
</div>
|
|
{{template "base/modal_actions_confirm" .}}
|
|
</div>
|
|
|
|
<div class="ui small edit-label modal">
|
|
<div class="header">
|
|
{{ctx.Locale.Tr "repo.issues.label_modify"}}
|
|
</div>
|
|
<div class="content">
|
|
<form class="ui edit-label form ignore-dirty" action="{{$.Link}}/edit" method="post">
|
|
{{.CsrfTokenHtml}}
|
|
<input id="label-modal-id" name="id" type="hidden">
|
|
<div class="required field">
|
|
<label for="name">{{ctx.Locale.Tr "repo.issues.label_title"}}</label>
|
|
<div class="ui small input">
|
|
<input class="label-name-input" name="title" placeholder="{{ctx.Locale.Tr "repo.issues.new_label_placeholder"}}" autofocus required maxlength="50">
|
|
</div>
|
|
</div>
|
|
<div class="field label-exclusive-input-field">
|
|
<div class="ui checkbox">
|
|
<input class="label-exclusive-input" name="exclusive" type="checkbox">
|
|
<label>{{ctx.Locale.Tr "repo.issues.label_exclusive"}}</label>
|
|
</div>
|
|
<br>
|
|
<small class="desc">{{ctx.Locale.Tr "repo.issues.label_exclusive_desc"}}</small>
|
|
<div class="desc tw-ml-1 tw-mt-2 tw-hidden label-exclusive-warning">
|
|
{{svg "octicon-alert"}} {{ctx.Locale.Tr "repo.issues.label_exclusive_warning"}}
|
|
</div>
|
|
<br>
|
|
</div>
|
|
<div class="field label-is-archived-input-field">
|
|
<div class="ui checkbox">
|
|
<input class="label-is-archived-input" name="is_archived" type="checkbox">
|
|
<label>{{ctx.Locale.Tr "repo.issues.label_archive"}}</label>
|
|
</div>
|
|
<i class="tw-ml-1" data-tooltip-content={{ctx.Locale.Tr "repo.issues.label_archive_tooltip"}}>
|
|
{{svg "octicon-info"}}
|
|
</i>
|
|
</div>
|
|
<div class="field">
|
|
<label for="description">{{ctx.Locale.Tr "repo.issues.label_description"}}</label>
|
|
<div class="ui small fluid input">
|
|
<input class="label-desc-input" name="description" placeholder="{{ctx.Locale.Tr "repo.issues.new_label_desc_placeholder"}}" maxlength="200">
|
|
</div>
|
|
</div>
|
|
<div class="field color-field">
|
|
<label for="color">{{ctx.Locale.Tr "repo.issues.label_color"}}</label>
|
|
<div class="column js-color-picker-input">
|
|
<input name="color" value="#70c24a"placeholder="#c320f6" required maxlength="7">
|
|
{{template "repo/issue/label_precolors"}}
|
|
</div>
|
|
</div>
|
|
</form>
|
|
</div>
|
|
<div class="actions">
|
|
<button class="ui small basic cancel button">
|
|
{{svg "octicon-x"}}
|
|
{{ctx.Locale.Tr "cancel"}}
|
|
</button>
|
|
<button class="ui primary small approve button">
|
|
{{svg "fontawesome-save"}}
|
|
{{ctx.Locale.Tr "save"}}
|
|
</button>
|
|
</div>
|
|
</div>
|