22 lines
633 B
HTML
22 lines
633 B
HTML
{% extends 'base.html' %}
|
|
{% load i18n static crispy_forms_filters %}
|
|
{% block content %}
|
|
<h3>
|
|
{% if object %}
|
|
{{ _("Update") }}
|
|
{% else %}
|
|
{{ _("Create") }}
|
|
{% endif %}
|
|
</h3>
|
|
<form method="post">
|
|
{% csrf_token %}
|
|
{{ form|crispy }}
|
|
<button type="submit"
|
|
name="schedule_lead"
|
|
id="lead-save"
|
|
class="btn btn-phoenix-primary">{{ _("Save") }}</button>
|
|
<a href="{% url 'lead_list' request.dealer.slug %}"
|
|
class="btn btn-phoenix-secondary">{{ _("Cancel") }}</a>
|
|
</form>
|
|
{% endblock %}
|