11 lines
377 B
HTML
11 lines
377 B
HTML
{% extends 'base.html' %}
|
|
{% load i18n static crispy_forms_filters %}
|
|
{% block content %}
|
|
<h1>{% trans "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">{% trans "Add Activity" %}</button>
|
|
</form>
|
|
{% endblock %}
|