{% extends "base_view.html" %} {% load widget_tweaks %} {% block title %} meliza-lab : new order {% endblock %} {% block content %}

Create a new order

{% csrf_token %}

Instructions: This form is used to create a new order. Leave the account field blank if you are not sure what it should be. After the order is created, you can add items to it.

{% if form.non_field_errors %}
{{ form.non_field_errors }}
{% endif %} {% for field in form %}
{% render_field field class+="form-control" %}
{% endfor %}
{% endblock %}