diff options
author | Jayaram R Pai | 2014-09-11 00:02:57 +0530 |
---|---|---|
committer | Jayaram R Pai | 2014-09-11 00:02:57 +0530 |
commit | 961133f4a76fa5e56c74f3521a96109d23855e5a (patch) | |
tree | 4ffb9fbba127a8fb74e46be305ca32421803f5b4 /static/website/templates/bug-form.html | |
parent | 523bc7d9c6e6632f51ad98534806a937b3600557 (diff) | |
download | scilab-on-cloud-961133f4a76fa5e56c74f3521a96109d23855e5a.tar.gz scilab-on-cloud-961133f4a76fa5e56c74f3521a96109d23855e5a.tar.bz2 scilab-on-cloud-961133f4a76fa5e56c74f3521a96109d23855e5a.zip |
added report bug form
Diffstat (limited to 'static/website/templates/bug-form.html')
-rw-r--r-- | static/website/templates/bug-form.html | 27 |
1 files changed, 27 insertions, 0 deletions
diff --git a/static/website/templates/bug-form.html b/static/website/templates/bug-form.html new file mode 100644 index 0000000..d27911a --- /dev/null +++ b/static/website/templates/bug-form.html @@ -0,0 +1,27 @@ +<form id="bug-form" action="" method="POST" accept-charset="utf-8"> {% csrf_token %} + {{ form.example }} + <div id="non-field-errors"> + </div> + <div id="id_issue_wrapper" class="wrapper"> + <label>Type of issue:</label> + {{ form.issue }} + </div> + + <div id="id_description_wrapper" class="wrapper"> + <label>Description:</label> + {{ form.description }} + </div> + + <div id="id_notify_wrapper" class="wrapper"> + <label>{{ form.notify }} I want to be notified.</label> + </div> + + <div id="id_email_wrapper" class="wrapper"> + <span id="email-wrapper"> + {{ form.email.errors }} + <label>Email:</label> + {{ form.email }} + </span> + </div> + <input type="submit" id="bug-form-submit"> +</form> |