{% extends "base.html" %} {% load i18n %} {% block extrahead %} {% endblock %} {% block content %}
{% csrf_token %}
{% for hidden in contractForm.hidden_fields %} {{ hidden }} {% endfor %} {% with contractForm.contract_model as field %}
{{ field.errors }}
{{ field }} {% if field.field.help_text %}

{{ field.field.help_text|safe }}

{% endif %}
{% endwith %} {% with contractForm.title as field %} {% include "field.html" %} {% endwith %} {% with contractForm.contract_file as field %}
{{ field.errors }}
{{ field }} {% if field.field.help_text %}

{{ field.field.help_text|safe }}

{% endif %}
{% endwith %}
{% with contractForm.content as field %}
{{ field.errors }}
{{ field }} {% if field.field.help_text %}

{{ field.field.help_text|safe }}

{% endif %}

{% trans "Keywords you can use" %} : {{ substitution_keys }}

{% endwith %}
{% endblock %}