{% extends "management/base.html" %} {% load i18n lucide static ui %} {% block heading %}{% trans "Parent claims" %}{% endblock heading %} {% block topbar_context %} {% if pending %} {% blocktrans count counter=pending|length %}{{ counter }} waiting{% plural %}{{ counter }} waiting{% endblocktrans %} {% endif %} {% endblock topbar_context %} {% block panel %}
{% blocktrans %}Check each request against your own records before approving. The shortlist only ever contains children who have nobody on file, so approving can never re-parent a child who already has one. An approved parent is added as a guardian: they get the login, but owe no fee and are not counted as a member.{% endblocktrans %}
{% trans "No child without a parent matches this. Check the spelling and the date of birth with them before rejecting." %}
{% endif %}{% trans "Nothing waiting." %}
{% endfor %}{% trans "Imported without a parent. They stay here until someone claims them." %}
{% trans "Every child has a parent linked." %}
{% endfor %}| {% trans "Parent" %} | {% trans "Claimed" %} | {% trans "Outcome" %} | {% trans "Reviewed by" %} |
|---|---|---|---|
| {{ claim.parent_name }} {{ claim.parent_email }} |
{{ claim.claimed_child_name }} |
{% if claim.status == "approved" %}
{% trans "Approved" %}
{% if claim.child %} {{ claim.child }} {% endif %}
{% else %}
{% trans "Rejected" %}
{% if claim.note %}{{ claim.note }} {% endif %}
{% endif %}
|
{{ claim.reviewed_by|default:"—" }} |