{% extends "layouts/" + render_mode + ".html" %} {% block title %}{{_("Contacts")}}{% endblock %} {% block contenttools %}
{% include("partials/tools_contacts.html") %}
{% endblock %} {% block content %} {% if 0 and is_dev_version() %}

IMPORTANT: This page is unfinished. Please don't be surprised by bugs.

{% 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 %}
{% else %} {{ mailpile('http/redirect', U('/')) }} {% endif %} {% endblock %}