{% extends "base.html" %} {% block title %}{{ _('Team Contacts & Messaging') }}{% endblock %} {% block content %}
{{ contacts|length }} {{ _('contacts') }}
{% for c in contacts %}
{{ (c.full_name or c.username)[0]|upper }}
{{ c.full_name or c.username }}
{{ c.role }}
{% if c.email %} Email {% endif %} {% if c.telegram_username %} {{ _('Message') }} {{ _('Call') }} {% endif %} {% if c.phone %} {{ c.phone }} WhatsApp {% endif %} {% if not c.email and not c.telegram_username and not c.phone %} {{ _('No contact info available') }} {% endif %}
{% if c.us_count > 0 %}
{{ c.sites_count }} {{ _('sites') }} {{ c.us_count }} US {% if c.years_range %} {{ c.years_range }} {% endif %}
{% endif %} {% if c.sites and c.sites|length > 0 %}
{{ _('Sites') }}:
{% for site in c.sites[:8] %} {{ site|replace('_',' ')|truncate(30) }} {% endfor %} {% if c.sites|length > 8 %} +{{ c.sites|length - 8 }} {% endif %}
{% endif %}
{% endfor %}
{% if not contacts %}
{{ _('No contacts found. Users will appear here when they have contact information (email, Telegram, phone) or have excavation activity.') }}
{% endif %}
{{ _('Setup Telegram') }}

{{ _('To enable Telegram messaging and calls, each user needs to set their Telegram username in their profile.') }}

{{ _('Admin can set it in User Management, or users can set it themselves.') }}

{{ _('WhatsApp links are generated automatically from the phone number field.') }}

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