bug report form
[wolnelektury.git] / apps / suggest / templates / suggest.html
diff --git a/apps/suggest/templates/suggest.html b/apps/suggest/templates/suggest.html
new file mode 100644 (file)
index 0000000..a2d9d72
--- /dev/null
@@ -0,0 +1,11 @@
+{% load i18n %}
+<h2>{% trans "Report a bug or suggestion" %}</h2>
+<form id='suggest-form' action="{% url suggest.views.report %}" method="post" accept-charset="utf-8" class="cuteform">
+<ol>
+    <li><label for="{{ form.author.id }}">{{ form.author.label }}</label> {{ form.author }}</li>
+    <li><label for="{{ form.email.id }}">{{ form.email.label }}</label> {{ form.email }}</li>
+    <li><label for="{{ form.title.id }}">{{ form.title.label }}</label> {{ form.title }}</li>
+       <li><label for="{{ form.description.id }}">{{ form.description.label }}</label> {{ form.description }}</li>
+    <li><input type="submit" value="{% trans "Send report" %}"/></li>
+</ol>
+</form>
\ No newline at end of file