{% extends "email/_base.html" %} {% load i18n club_email %} {% comment %} HTML sibling of dues_invoice_reminder.txt -- same content, same context (club, membership, member, invoice, request). Same shell/branding as dues_invoice.html, just a different message and no "PDF attached" line (the reminder re-attaches the same PDF the original invoice did, but leads with the overdue note instead). {% endcomment %} {% block title %}{% blocktrans with club=club.name number=invoice.number %}Reminder: {{ club }} invoice {{ number }} is overdue{% endblocktrans %}{% endblock title %} {% block preheader %}{% blocktrans with club=club.name %}A membership fee invoice from {{ club }} is still unpaid.{% endblocktrans %}{% endblock preheader %} {% block header %} {% absolute_media_url club.logo as logo_url %}
{% if club.logo %} {{ club.name }} {% else %}
{{ club.initials }}
{% endif %}
{{ club.name }}
{% endblock header %} {% block content %}

{% blocktrans with name=member.first_name %}Hello {{ name }},{% endblocktrans %}

{% blocktrans with club=club.name date=invoice.due_date|date:"j F Y" %}This is a reminder that {{ club }}'s invoice for your membership fee was due on {{ date }} and is still unpaid.{% endblocktrans %}

{% trans "Amount due" %} €{{ invoice.amount }}
{% trans "Was due" %} {{ invoice.due_date|date:"j F Y" }}
{% trans "Invoice number" %} {{ invoice.number }}

{% trans "A PDF copy of this invoice is attached." %}

{% endblock content %} {% block footer %} {% if club.contact_email %}

{% blocktrans with email=club.contact_email %}Already paid? Let us know at {{ email }} so we can update our records.{% endblocktrans %}

{% endif %}

{% blocktrans with club=club.name %}— {{ club }}{% endblocktrans %}

{% endblock footer %}