haikal/templates/crm/add_activity.html
2025-07-15 17:27:03 +03:00

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 %}