haikal/templates/crm/add_note.html
Marwan Alwali 9549213a09 update
2025-01-12 09:33:42 +03:00

10 lines
316 B
HTML

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