2015-08-09 15:23:02 +08:00
|
|
|
{{template "base/head" .}}
|
2023-02-02 06:56:10 +08:00
|
|
|
<div role="main" aria-label="{{.Title}}" class="page-content repository new issue">
|
2015-08-09 15:23:02 +08:00
|
|
|
{{template "repo/header" .}}
|
2015-08-10 01:04:23 +08:00
|
|
|
<div class="ui container">
|
2022-09-02 15:58:49 +08: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-08 02:40:36 +08:00
|
|
|
There's already an importing of alert.tmpl in new_form.tmpl,
|
2022-09-02 15:58:49 +08: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-10 01:04:23 +08:00
|
|
|
{{template "repo/issue/new_form" .}}
|
2015-08-09 15:23:02 +08:00
|
|
|
</div>
|
|
|
|
</div>
|
2015-12-08 06:30:52 +08:00
|
|
|
{{template "base/footer" .}}
|