{% extends "orders/base.html" %} {% load crispy_forms_tags %} {% load static %} {% block content %}
{% if request.path != '/dx/order/create/' %}

Προβολή Παραγγελίας

{% else %}

Δημιουργία Παραγγελίας

{% endif %}
{% if request.path != '/dx/order/create/' %} Διαγραφή Παραγγελίας Εκτύπωση Παραγγελίας {% endif %} {% if not user.is_authenticated %} Ανανέωση Σελίδας {% endif %}
{% if messages %}
    {% for message in messages %}
  • {{ message|safe }}
  • {% endfor %}
{% endif %}
{% if form.errors %}

{{ form.errors }}

{% for field in form %} {% for error in field.errors %}
{{ field.name }} {{ error|escape }}
{% endfor %} {% endfor %} {% for error in form.non_field_errors %}
{{ field.name }} {{ error|escape }}
{% endfor %} {% endif %}
{% crispy form %}
{% endblock content %}