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

CARES Registration: {{registration.species.name}}

Aquarist:  {{registration.aquarist_name}}
Email:  {{registration.aquarist_email}}
 

Species:  {{registration.species.name}}

Classification:  {{registration.species.get_cares_classification_display}}

Family:  {{registration.species.get_cares_family_display}}

Details:

Aquarist Source:  {{registration.species_source}}

Year Acquired:  {{registration.year_acquired}}

Collection Location:   {% if registration.collection_location %} {{registration.collection_location}} {% else %} None {% endif %}

Species Verification Photo:

{% if registration.verification_photo %}

{% else %}

None

{% endif %}

Breeding Group?   {% if registration.species_has_spawned %} Yes {% if registration.offspring_shared > 0 %}  (offspring shared){% endif %} {% else %} No {% endif %}

Young Available?   {% if registration.young_available %}Yes{% else %}No{% endif %}

ASN Imported?   {% if registration.asn_imported %}Yes{% else %}No{% endif %}

Approval:
{% csrf_token %} {% crispy form %}
{% if userIsAdmin %}
Delete Registration

This action cannot be undone. All associated data will be permanently removed.

 Delete Registration 

{% endif %}
{% endblock content %}