You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
17 lines
476 B
17 lines
476 B
{% extends "crm/base.html" %}
|
|
|
|
{% block head_title %}{{ first_title }}{% endblock %}
|
|
{% block first_title %}{{ first_title }}{% endblock %}
|
|
{% block second_title %}{{ second_title }}{% endblock %}
|
|
|
|
{% block content %}
|
|
|
|
<div class="container padding-bottom bubble"><form method="post">
|
|
{% csrf_token %}
|
|
{{ form.as_p }}
|
|
<button class="small-button" type="submit">
|
|
{% if is_edit %}Update{% else %}Add{% endif %} Prospect
|
|
</button>
|
|
</form>
|
|
|
|
{% endblock %}
|
|
|