haikal/templates/crm/add_activity.html
2025-08-31 14:49:32 +03:00

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