Files
Atay-Makhzan/templates/repo/issue/new.tmpl
T

21 lines
664 B
Handlebars
Raw Normal View History

2015-08-09 15:23:02 +08:00
{{template "base/head" .}}
<div 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">
2015-08-09 15:23:02 +08:00
<div class="navbar">
{{template "repo/issue/navbar" .}}
</div>
<div class="ui divider"></div>
2022-09-02 15:58:49 +08:00
{{if .Flash.WarningMsg}}
{{/*
2022-09-07 14:40:36 -04: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-07 23:30:52 +01:00
{{template "base/footer" .}}