{% extends "base.html" %} {% load i18n %} {% load crispy_forms_filters %} {% block title %} {% if object %} {% trans 'Update Vendor' %} {% else %} {% trans 'Add New Vendor' %} {% endif %} {% endblock %} {% block content %}

{% if object %} {% trans "Update Vendor" %} {% else %} {% trans "Add New Vendor" %} {% endif %}

{% csrf_token %} {{ redirect_field }} {{ form|crispy }} {% if form.errors %} {% endif %}
{% trans "Cancel" %}
{% endblock %}