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

Species Profile:  {{species.name}}

{% if species.alt_name %}

Alternate Name:   {{species.alt_name}}

{% endif %} {% if species.common_name %}

Common Name:  {{species.common_name}}

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

{% endif %} {% if species.photo_credit %}

Photo by:  {{species.photo_credit}}

{% endif %}

Description

{{species.description|linebreaks}}

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}}

{% if species.iucn_red_list != 'UN' and species.iucn_red_list != 'DD' and species.iucn_red_list != 'NE' %}

IUCN Red List Status:  {{species.get_iucn_red_list_display}}

{% endif %} {% endif %}   {% if speciesReferenceLinks.all.count > 0 %}

Reference Links

{% for speciesReferenceLink in speciesReferenceLinks %}

{{speciesReferenceLink.name}} {% if speciesComment.user == request.user or userCanEdit %} Edit Link {% endif %}

{% endfor %}
{% endif %}

Aquarists keeping this Species

{% if species.species_instances.all.count > 0 %} {% for speciesInstance in speciesInstances %} {% if speciesInstance.currently_keep %}

{{speciesInstance.user.get_display_name}}: {{speciesInstance.name}}

{% endif %} {% endfor %} {% else %}

None

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

I keep this species!

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

Species Feedback

Please use the Species Feedback button to provide helpful comments or corrections. Only admins will see your submission.

Note: If you have a good photo you would like to submit for consideration as the Species Profile photo you can upload it.

 Submit Species Feedback 

{% endif %}
{% endblock content %}