{% extends 'base.html' %} {% block content %}

{% if quote %}Edit{% else %}New{% endif %} Quote

{% csrf_token %} {% for field in form %}
{{ field.errors }}

{{ field.label_tag }}

{{ field }} {% if field.help_text %}

{{ field.help_text|safe }}

{% endif %}
{% endfor %} Go Back
{% endblock %}