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

{% if object %} {{ _("Update Lead") }} {% else %} {{ _("Create New Lead") }} {% endif %}
  • {% csrf_token %} {{ form|crispy }}
    {% trans "Cancel" %}
    {% endblock %}