{% extends 'helpdesk/base.html' %} {% load bootstrap %} {% block breadcrumb_items %} {{ block.super }} Confirm Followup creation {% endblock %} {% block pagetitle %}: Ticket: confirm Followup creation{% endblock pagetitle %} {% block content %}

Ticket concerned

{% include 'helpdesk/ticket_card.html' with ticket=form.initial.ticket %}

Your Followup:

{% if form.errors %} {% for field in form %} {% for error in field.errors %}
{{ field.name }} - {{ error|escape }}
{% endfor %} {% endfor %} {% for error in form.non_field_errors %}
{{ error|escape }}
{% endfor %} {% endif %}
{% csrf_token %} {{ form|bootstrap }}
{% endblock content %}