{% extends "layouts/" + render_mode + "-wide.html" %} {% block title %}{{_("Contacts")}}{% endblock %} {% block content %}
{% include("partials/tools_contacts.html") %}
{% if result.contacts %} {% for contact in result.contacts %} {% if contact.email %} {% else %} {{_("No Contact Info")}} {% endif %} {% endfor %} {% endif %}
{% if result.offset > 0 %} {{_("Previous")}} {% endif %} {% if result.offset + result.count < result.total %} {{_("Next")}} {% endif %}
{% if result.total > 1 %}{{result.start}} - {{result.end}} {{_("of")}} {{result.total}} {{_("Contacts")}} {% elif result.total == 1 %} {{_("1 Conversation")}} {% else %} {{_("No results found")}} {% endif %}
{% endblock %}