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

Species Profiles with Photos ({{species_with_photos|length}})

{% if species_with_photos %} {% for species in species_with_photos %}

{{species.name}}

{% if species.species_image %}

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

Photo by:  {{species.photo_credit}}

{% else %}

** Missing Photo Credit**

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

None

{% endif %}
{% endblock content %}