{% extends "email/_base.html" %} {% load i18n club_email %} {% comment %} HTML sibling of claim_approved.txt -- same content, same context (club, child, parent_first_name, set_password_url), just laid out for an inbox instead of a terminal. Kept in lockstep with the .txt version by hand: there's no single source the two are generated from, so a change to one reads as incomplete without the other. {% endcomment %} {% block title %}{% blocktrans with club=club.name %}Your {{ club }} account is ready{% endblocktrans %}{% endblock title %} {% block preheader %}{% blocktrans with club=club.name %}{{ club }} has confirmed you're a parent or guardian -- set your password to sign in.{% 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=parent_first_name %}Hello {{ name }},{% endblocktrans %}

{% blocktrans with club=club.name child=child %}{{ club }} has confirmed that you're {{ child }}'s parent or guardian, and your account is ready.{% endblocktrans %}

{% trans "Set your password" as set_password_label %} {% include "email/_button.html" with href=set_password_url label=set_password_label bg=club.primary_color|default:"#4f46e5" fg=club.primary_color|default:"#4f46e5"|contrast_color %}

{% trans "That link is for you alone — please don't forward it." %}

{% trans "Once you're signed in you'll see the children linked to you." %}

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

{% blocktrans with email=club.contact_email %}Something not right? Reply to this note or write to {{ email }}.{% endblocktrans %}

{% endif %}

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

{% endblock footer %}