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

Aquarist Species:  {{speciesInstance.name}}

Aquarist: {{speciesInstance.user.get_display_name}}

Species Profile: {{species.name}}

{% if species.common_name %}

Common Name:   {{species.common_name}}

{% endif %} {% if species.species_image %}

{% if species.photo_credit %}

Species Photo by: {{species.photo_credit}}

{% else %}

General species photo

{% endif %} {% endif %}

Description:   {{species.description}}

Category:   {{species.get_category_display}}

Global Region:   {{species.get_global_region_display}}

Distribution:   {{species.local_distribution}}

{% if renderCares %}

CARES Classification:   {{species.get_cares_classification_display}}

{% endif %}

Aquarist Notes

{% if speciesInstance.aquarist_species_image %}

Photo of aquarist's species:

{% endif %} {% if speciesInstance.collection_point %}

Collection Point:   {{speciesInstance.collection_point}}

{% endif %}

Genetic Line:   {{speciesInstance.get_genetic_traits_display}}

{% if speciesInstance.unique_traits %}

Line Traits:   {{speciesInstance.unique_traits}}

{% endif %}

Year Acquired:   {{speciesInstance.year_acquired}}

{{speciesInstance.aquarist_notes|linebreaks}}

{% if speciesInstance.aquarist_species_video_url %}

Video of aquarist's species:

{% endif %} {% if speciesInstance.have_spawned %}

Spawning notes:

Species Spawned:   Yes

{{speciesInstance.spawning_notes|linebreaks}}

{% if speciesInstance.have_reared_fry %}

Have Reared Fry?   Yes

{{speciesInstance.fry_rearing_notes|linebreaks}}

{% if speciesInstance.young_available %}

Young fish available?   Yes

{% endif %} {% endif %} {% endif %} {% if request.user.is_authenticated %} {% if userCanEdit %}

   Edit Aquarist Species   

{% endif %} {% if speciesInstance.enable_species_log %}
Species Logs

Aquarist Species Logs are linked pages aquarists can use to add additional notes, images, and embed YouTube videos.

{% if userCanEdit or not speciesInstance.log_is_private %}

      View Species Log      

{% endif %}
{% endif %} {% if speciesMaintenanceLog %} {% if userCanEdit or not speciesMaintenanceLog.log_is_private %}
Species Maintenance Collaboration

Species Maintenance Logs enable collaboration among aquarists working together to maintain a species.

   View Species Maintenance Log   

{% endif %} {% endif %} {% if isBapParticipant %}
BAP Programs
{% if bapEligibleMemberships|length > 0 %}

Breeder Award Programs (BAP) are hosted by Aquarium Clubs. If you have spawned this species and reared fry, you may be eligible to submit the species for BAP Points.

{% for bapClubMember in bapEligibleMemberships %}

  Submit {{bapClubMember.club.acronym}} BAP Request  

{% endfor %} {% endif %} {% if bapSubmissions|length > 0 %} {% for bapSubmission in bapSubmissions %}

 {{bapClubMember.club.acronym}}View BAP Request 

{% endfor %}
{% endif %}
{% endif %} {% if speciesInstance.species.render_cares %}
CARES Conservation Program
{% if not caresRegistration %}

The CARES Fish Preservation Program encourages aquarists to maintain, breed, and distribute offspring of at-risk species. If you have a breeding group or are keeping this species with the intent to breed them, consider registering the species with the CARES organization.

 Register this CARES species 

{% elif caresRegistration.status == caresRegistration.CaresRegistrationStatus.APPROVED %}
✅ CARES Registration Approved
Your registration for {{ caresRegistration.species.name }} has been approved.

 View Registration 

{% elif caresRegistration.status == caresRegistration.CaresRegistrationStatus.DECLINED %}
⚠️ CARES Registration Declined
{% if caresRegistration.approver_notes %}

Approver Comments: {{ caresRegistration.approver_notes }}

{% endif %}

 View Registration   Re-submit Registration 

{% else %} {# OPEN or RESUBMIT #}
⏳ CARES Registration Pending
Your registration for {{ caresRegistration.species.name }} is currently under review.

 View Registration 

{% endif %}
{% endif %} {% endif %}
{% endblock content %}