{% extends 'main.html' %} {% load static %} {% block content %}

Your CARES Registrations

{{ registration_count }} registration{{ registration_count|pluralize }} found for {{ email }}
{% if registrations %}
{% for registration in registrations %} {% endfor %}
Species Club Family Classification Status Submitted Last Updated
{{ registration.species.name }} {% if registration.species.common_name %}
{{ registration.species.common_name }} {% endif %}
{{ registration.affiliate_club.acronym }} {{ registration.species.get_cares_family_display }} {{ registration.species.get_cares_classification_display }} {{ registration.get_status_display }} {{ registration.date_requested|date:"Y-m-d" }} {% if registration.last_report_date %} {{ registration.last_report_date|date:"Y-m-d" }} {% else %} {{ registration.lastUpdated|date:"Y-m-d" }} {% endif %}
{% else %}
No registrations found

We couldn't find any CARES registrations for {{ email }}.

Please:

  • Check that you entered the correct email address
  • Contact your club liaison if you believe this is an error
{% endif %}
{% endblock content %}