{% extends "base.html" %} {% from "components/ui.html" import csrf_field, folder_options with context %} {% block title %}{{ current.name }} · {{ account.email }} · {{ APP_NAME }}{% endblock %} {% block heading %}{{ current.name }}{% endblock %} {% block subheading %}
{{ account.email }}{% if current.total is not none %} · {{ current.total }} messages{% endif %}{% if current.unread %}, {{ current.unread }} unread{% endif %}
{% endblock %} {% block actions %} {% if can.drafts %}Drafts{% endif %} {% if can.write %}Write{% endif %} {% endblock %} {% block content %}
{% if current.role is none and (can.update_folder or can.delete_folder) %}

This folder

{% if can.update_folder %}
{{ csrf_field() }}
{{ csrf_field() }}
{% endif %} {% if can.delete_folder %}
{{ csrf_field() }}
{% endif %}
{% endif %}
{% include "partials/mail_search.html" %}
{% if selectable and messages %}
{{ csrf_field() }} {% if can.change %} {% endif %} {% if can.purge %}{% endif %}
{% endif %}
{% include "partials/message_list.html" %}
{% endblock %}