{% extends "base.html" %} {% block title %}{{ _('Operator Directory') }} - PyArchInit-Mini{% endblock %} {% block extra_css %} {% endblock %} {% block content %}

{{ _('Operator Directory') }}

{{ _('Who excavated what, when, and how to reach them.') }}

{{ operators|length }} {{ _('operators') }}
{% for op in operators %}
{{ op.name }}
{% if op.email %} {% else %}
{{ _('No email on file') }}
{% endif %}
{% for badge in op.role_badges %} {% if badge == 'Schedatore' %} {% elif badge == 'Direttore' %} {% elif badge == 'Responsabile' %} {% endif %} {{ _(badge) }} {% endfor %}
{{ op.sites_count }}
{{ _('Sites') }}
{{ op.us_count }}
{{ _('US') }}
{% if op.years_range %} {{ op.years_range }} {% else %} — {% endif %}
{{ _('Years Active') }}
{{ _('Sites') }}
{% if op.sites_list %}
{% for site in op.sites_list %} {% endfor %}
{{ _('Site') }} {{ _('US Count') }}
{{ site.name }} {{ site.us_count }}
{% endif %}
{% else %}
{{ _('No operators found') }}

{{ _('Operator data is extracted from the schedatore, direttore, and responsabile fields in stratigraphic units.') }}

{% endfor %}
{{ _('No operators match your filters') }}

{{ _('Try adjusting your search criteria.') }}

{% endblock %} {% block extra_js %} {% endblock %}