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