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

Create a new item

{% csrf_token %}

Instructions: This form is used to create a new item. Items are specific things or services sold by vendors. After the item is created, you can add it to an order.

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