{% extends 'base.html' %} {% load i18n static crispy_forms_filters %} {% block title %} {# Check if an 'object' exists in the context #} {% 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 %}