{% extends "base.html" %} {% block title %}Treatment estimate - {{ clinic_name | default('DentalPin') }}{% endblock %} {% block content %}

Treatment estimate

Hello {{ patient_name }},

Please find below the treatment estimate #{{ budget_number }} from {{ clinic_name | default('DentalPin') }}:

{% if treatments %}
{% for t in treatments %}
{{ t.name }}{% if t.tooth %} — Tooth {{ t.tooth }}{% endif %}
{{ t.price }}
{% endfor %}
{% endif %}
{% if discount_amount %}
Subtotal
{{ subtotal }}
Discount
-{{ discount_amount }}
{% endif %}
Total
{{ total }}
{% if validity_days %}
Valid for
{{ validity_days }} days
{% endif %}
{% if notes %}

Notes: {{ notes }}

{% endif %} {% if custom_message %}
{{ custom_message }}
{% endif %}

Please contact us if you have any questions about this estimate.

{% endblock %}