{% extends "layouts/" + render_mode + "-wide.html" %} {% block title %}{{_("Contacts")}}{% endblock %} {% block contenttools %}
{% include("partials/tools_contacts.html") %}
{% endblock %} {% block content %}
{% if result.contacts %}
{% for contact in result.contacts %} {% if contact.email %} {% else %} {{_("No Contact Info")}} {% endif %} {% endfor %}
{% else %}

{{_("No Contacts Found")}} :)

{{_("Don't worry, it's ok. Mailpile will start to automatically create contacts whenever you send or reply to messages.")}}

{% 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 %}