{% extends "email/base.html" %} {% block title %}Subscription renewal on {{ renewal_date }}{% endblock %} {% block hero %} {% with hero_title="Renews on "|add:renewal_date %} {% include "email/partials/_hero.html" with hero_variant="warning" hero_title=hero_title hero_subtitle=plan_name hero_icon="card.png" %} {% endwith %} {% endblock %} {% block content %}

Hi {{ admin_name }},

{% if customer_type == "engineer" %} Your {{ plan_name }} plan renews on {{ renewal_date }} for {{ amount }}. {% else %} The {{ plan_name }} plan for {{ company_name }} renews on {{ renewal_date }} for {{ amount }}. {% endif %} No action is required unless you want to change or cancel your plan.

{% include "email/partials/_detail_row.html" with pill_label="PLAN" pill_value=plan_name pill_variant="gray" pill_radius="top" %} {% include "email/partials/_detail_row.html" with pill_label="RENEWAL DATE" pill_value=renewal_date pill_variant="gray" %} {% include "email/partials/_detail_row.html" with pill_label="AMOUNT" pill_value=amount pill_variant="gray" %} {% include "email/partials/_detail_row.html" with pill_label="PAYMENT METHOD" pill_value=payment_gateway pill_variant="gray" pill_border="none" pill_radius="bottom" %}
{% if customer_type == "engineer" %} {% include "email/partials/_detail_row.html" with pill_label="TASKS COMPLETED" pill_value=cases_completed|default:"0" pill_variant="gray" pill_radius="top" %} {% include "email/partials/_detail_row.html" with pill_label="XP EARNED" pill_value=xp_earned|default:"0" pill_variant="gray" pill_border="none" pill_radius="bottom" %}
{% else %} {% include "email/partials/_detail_row.html" with pill_label="ASSESSMENTS USED" pill_value=assessments_used pill_variant="gray" pill_radius="top" %} {% include "email/partials/_detail_row.html" with pill_label="ASSESSMENT LIMIT" pill_value=assessment_limit pill_variant="gray" %} {% include "email/partials/_detail_row.html" with pill_label="TEAM MEMBERS" pill_value=seats_used pill_variant="gray" %} {% include "email/partials/_detail_row.html" with pill_label="SEAT LIMIT" pill_value=seat_limit pill_variant="gray" pill_border="none" pill_radius="bottom" %}
{% endif %}

To upgrade, downgrade, or cancel before renewal, open billing settings.

{% if hosted_invoice_url %}

{% if has_invoice_pdf %} Your upcoming invoice is attached to this email. You can also view it online. {% else %} View your upcoming invoice. {% endif %}

{% endif %} {% include "email/partials/_cta.html" with cta_url=billing_url cta_label="Manage subscription" %}

Questions about this renewal? Contact support before {{ renewal_date }}.

{% endblock %}