{% extends "base.html" %} {% block title %}{{ _('Individui') }}{% endblock %} {% block content %}
{{ total }} {{ _('records') }}
{% if individui_list %}
{% for individui in individui_list %} {% endfor %}
ID {{ _('Site') }} {{ _('US') }} {{ _('N. Individuo') }} {{ _('Sesso') }} {{ _('Classi Eta') }} {{ _('Actions') }}
{{ individui.id_scheda_ind }} {{ individui.sito or '-' }} {{ individui.us or '-' }} {{ individui.nr_individuo if individui.nr_individuo is not none else '-' }} {{ individui.sesso or '-' }} {{ individui.classi_eta or '-' }}

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

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