19 lines
445 B
HTML
19 lines
445 B
HTML
{% extends "base.html" %}
|
|
|
|
{% block title %}Send E-Mail{% endblock %}
|
|
|
|
{% block content %}
|
|
<h1>{% ifequal category "discuss" %}Your opinion on {% endifequal %}IDTRACKER{% ifequal category "bugs" %} Error Report{% endifequal %}</h1>
|
|
<form action="." method="POST">
|
|
<table>
|
|
{{ form }}
|
|
<tr>
|
|
<td colspan="2" align="center">
|
|
<input type="submit" value="Submit"> <input type="reset" value="Reset">
|
|
</td>
|
|
</tr>
|
|
</table>
|
|
</form>
|
|
{% endblock %}
|
|
|