{% extends "base.html" %} {% block title %}{{ _('Fauna') }}{% endblock %} {% block content %}
{{ total }} {{ _('records') }}
{% if fauna_list %}
{% for fauna in fauna_list %} {% endfor %}
ID {{ _('Site') }} {{ _('US') }} {{ _('Specie') }} {{ _('N. Minimo Individui') }} {{ _('Actions') }}
{{ fauna.id_fauna }} {{ fauna.sito or '-' }} {{ fauna.us or '-' }} {{ fauna.specie_display or fauna.specie or '-' }} {{ fauna.numero_minimo_individui if fauna.numero_minimo_individui is not none else '-' }}

{{ _('Total') }}: {{ total }} — {{ _('Page') }} {{ page }}/{{ total_pages }}

{% if total_pages > 1 %} {% endif %}
{% else %}
{{ _('No Fauna records found.') }} {{ _('Create the first one') }}
{% endif %} {% endblock %}