16 lines
375 B
HTML
16 lines
375 B
HTML
<h2>Create new issue</h2>
|
|
|
|
{% if error_message %}<p><strong>{{ error_message }}</strong></p>{% endif %}
|
|
|
|
<form action="{% url 'issues:new' %}" method="post">
|
|
{% csrf_token %}
|
|
<table>
|
|
{{ form.as_table }}
|
|
<tr>
|
|
<td colspan="2">
|
|
<input type="submit" value="Create issue" />
|
|
</td>
|
|
</tr>
|
|
</table>
|
|
</form>
|