{% extends "base.html" %} {% block title %} {{title}} {% endblock title %} {% block content %}
{{title}}

{% csrf_token %} {{ form.non_field_errors }} {{ form.name.errors }} {{ form.phone.errors }} {{ form.address.errors }} {{ form.email.errors }} {{ form.gstin.errors }}
{{ form.name }}
{{ form.phone }}
{{ form.email }}
{{ form.address }}
{{ form.gstin }}

{% if title == "New Supplier" %} {% endif %} {% if delbtn %} Delete Supplier {% endif %} Cancel
{% endblock content %}