2015-08-09 07:23:02 +00:00
|
|
|
{{template "base/head" .}}
|
2020-12-01 04:00:14 +00:00
|
|
|
<div class="page-content repository new issue">
|
2015-08-09 07:23:02 +00:00
|
|
|
{{template "repo/header" .}}
|
2015-08-09 17:04:23 +00:00
|
|
|
<div class="ui container">
|
2015-08-09 07:23:02 +00:00
|
|
|
<div class="navbar">
|
|
|
|
{{template "repo/issue/navbar" .}}
|
|
|
|
</div>
|
|
|
|
<div class="ui divider"></div>
|
2022-09-02 07:58:49 +00: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 18:40:36 +00:00
|
|
|
There's already an importing of alert.tmpl in new_form.tmpl,
|
2022-09-02 07:58:49 +00: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 17:04:23 +00:00
|
|
|
{{template "repo/issue/new_form" .}}
|
2015-08-09 07:23:02 +00:00
|
|
|
</div>
|
|
|
|
</div>
|
2015-12-07 22:30:52 +00:00
|
|
|
{{template "base/footer" .}}
|