diff options
author | Unknwon <u@gogs.io> | 2015-08-09 15:23:02 +0800 |
---|---|---|
committer | Unknwon <u@gogs.io> | 2015-08-09 15:23:02 +0800 |
commit | 590c464c56c993c461f10470926a96448f4f7d00 (patch) | |
tree | e79642dd169eecc9757e1aa76f4e68568a6b9f46 /templates/repo/issue/new.tmpl | |
parent | 43a87b0caf50abe6d6b19adf10dd9f082c58ad61 (diff) | |
download | gitea-590c464c56c993c461f10470926a96448f4f7d00.tar.gz gitea-590c464c56c993c461f10470926a96448f4f7d00.zip |
UI: create issue with title and content
Diffstat (limited to 'templates/repo/issue/new.tmpl')
-rw-r--r-- | templates/repo/issue/new.tmpl | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/templates/repo/issue/new.tmpl b/templates/repo/issue/new.tmpl new file mode 100644 index 0000000000..9b57a0a052 --- /dev/null +++ b/templates/repo/issue/new.tmpl @@ -0,0 +1,14 @@ +{{template "base/head" .}} +<div class="repository new issue"> + {{template "repo/header" .}} + <div class="ui middle page grid body"> + <div class="navbar"> + {{template "repo/issue/navbar" .}} + </div> + <div class="ui divider"></div> + <div class="sixteen wide column page grid"> + {{template "repo/issue/new_form" .}} + </div> + </div> +</div> +{{template "base/footer" .}}
\ No newline at end of file |