{% extends BASE_TEMPLATE %} {% block inner %}

Create Redmine Issue

{% csrf_token %} {% if global_errors %}

{{ global_errors }}

{% endif %}
{{ form.subject.label_tag }} {{ form.subject }} {% if form.subject.errors %}
{{ form.subject.errors|join:", " }}
{% endif %}
{{ form.description.label_tag }} {{ form.description }} {% if form.description.errors %}
{{ form.description.errors|join:", " }}
{% endif %}
{% endblock %}