11 lines
349 B
HTML
11 lines
349 B
HTML
{% extends 'base.html' %}
|
|
{% load i18n static crispy_forms_filters %}
|
|
{% block content %}
|
|
<h1>Add Activity to {{ lead.first_name }} {{ lead.last_name }}</h1>
|
|
<form method="post">
|
|
{% csrf_token %}
|
|
{{ form|crispy }}
|
|
<button class="btn btn-phoenix-primary" type="submit">Add Activity</button>
|
|
</form>
|
|
{% endblock %}
|