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

Aquarists

Press Enter to search
{% if aquarist_list %}
{% for aquarist in aquarist_list %} {% endfor %}
Username Name
{{aquarist.get_display_name}} {% if not aquarist.is_private_name %} {{ aquarist.first_name }} {{ aquarist.last_name }} {% else %} Private {% endif %}
{% if is_paginated %} {% endif %} {% else %}
Aquarist List is empty
{% endif %}

Recent Updates

{% if recent_speciesInstances %}
{% for speciesInstance in recent_speciesInstances %}

 {{speciesInstance.name}}

{% if speciesInstance.aquarist_species_image %} {{ speciesInstance.name }} {% elif speciesInstance.species.species_image %} {{ speciesInstance.name }} {% else %} {{ speciesInstance.name }} {% endif %}

{{speciesInstance.lastUpdated | timesince}} by {{speciesInstance.user.get_display_name}}

{% endfor %}
{% else %}
Nothing to display
{% endif %}
{% endblock content %}