2015-08-09 09:23:02 +02:00
|
|
|
{{template "base/head" .}}
|
2023-02-01 23:56:10 +01:00
|
|
|
<div role="main" aria-label="{{.Title}}" class="page-content repository new issue">
|
2015-08-09 09:23:02 +02:00
|
|
|
{{template "repo/header" .}}
|
2015-08-09 19:04:23 +02:00
|
|
|
<div class="ui container">
|
2022-09-02 09:58:49 +02:00
|
|
|
{{if .Flash.WarningMsg}}
|
|
|
|
{{/*
|
Fix various typos (#21103)
Found via `codespell -q 3 -S
./options/locale,./options/license,./public/vendor,./web_src/fomantic -L
actived,allways,attachements,ba,befores,commiter,pullrequest,pullrequests,readby,splitted,te,unknwon`
Co-authored-by: techknowlogick <techknowlogick@gitea.io>
2022-09-07 20:40:36 +02:00
|
|
|
There's already an importing of alert.tmpl in new_form.tmpl,
|
2022-09-02 09:58:49 +02:00
|
|
|
but only the negative message will be displayed within forms for some reasons, see semantic.css:10659.
|
|
|
|
To avoid repeated negative messages, the importing here if for .Flash.WarningMsg only.
|
|
|
|
*/}}
|
|
|
|
{{template "base/alert" .}}
|
|
|
|
{{end}}
|
2015-08-09 19:04:23 +02:00
|
|
|
{{template "repo/issue/new_form" .}}
|
2015-08-09 09:23:02 +02:00
|
|
|
</div>
|
|
|
|
</div>
|
2015-12-07 23:30:52 +01:00
|
|
|
{{template "base/footer" .}}
|