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

Species Log:  {{speciesInstance.species.name}}

Aquarist: {{speciesInstance.user.get_display_name}}

Aquarist Species: {{speciesInstance.name}} {% if userCanEdit %}   Add Species Log Entry  

{% endif %}

{% if speciesInstanceLogEntries.all.count > 0 %} {% for logEntry in speciesInstanceLogEntries %}

Log Entry:  {{logEntry.name}}   {% if userCanEdit %} Edit Log Entry {% endif %}

{% if logEntry.log_entry_image %}

{% endif %} {% if logEntry.log_entry_video_url %}

Video of aquarist's species:

{% endif %}

{{logEntry.log_entry_notes|linebreaks}}

{% endfor %} {% else %}

No Species Logs Found

{% endif %}

Back to Aquarist Species

{% endblock content %}