{% extends "_base.html" %} {% load i18n %} {% load static %} {% block content %} {% get_current_language as LANGUAGE_CODE %}

{% if is_archive %} {% translate "Archived Contacts" %} {% else %} {% translate "Contacts" %} {% endif %}

{% if is_archive %} {% include "search_input_form.html" with object_type="contact" object_archived=True language_slug=LANGUAGE_CODE %} {% else %} {% include "search_input_form.html" with object_type="contact" object_archived=False language_slug=LANGUAGE_CODE %} {% if perms.cms.change_contact %} {% translate "Create contact" %} {% endif %} {% endif %}
{% csrf_token %}
{% for contact in contacts %} {% include "contacts/contact_list_row.html" %} {% empty %} {% endfor %}
{% translate "Name of related location" %} {% translate "Area of responsibility" %} {% translate "Name" %} {% translate "E-Mail" %} {% translate "Phone number" %} {% translate "Mobile phone number" %} {% translate "Website" %} {% translate "Options" %}
{% if is_archive %} {% if search_query %} {% translate "No archived contacts found with these filters." %} {% else %} {% translate "No contacts archived yet." %} {% endif %} {% else %} {% if search_query %} {% translate "No contacts found with these filters." %} {% else %} {% translate "No contacts available yet." %} {% endif %} {% endif %}
{% if contacts %}
0 {% translate "Contacts selected" %}
{% endif %} {% if perms.cms.archive_contact %}
{% endif %} {% include "../generic_confirmation_dialog.html" %} {% url "contacts" as url %} {% include "pagination.html" with chunk=contacts %} {% endblock content %}