summaryrefslogtreecommitdiff
path: root/src/jwebmail/templates/displayheaders.html
blob: ce9ea6e0bc37fa14de07efbdd7fdae833eefb6c9 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
{% extends 'mainlayout.html' %}

{% block scripts %}
  <script src="{{ url_for('static', filename='src/displayheaders.js') }}" defer>
  </script>
{% endblock %}

{% block content %}
  <section class="section container">

    {% include '_folders.html' %}

    {% if loginmessage is defined %}
      <p id=loginmessage>
        {{ loginmessage }}
      </p>
    {% endif %}

    {% include '_top_nav.html' %}

    {% if msgs %}
      {% include '_main_table.html' %}
    {% else %}
      <p class="section">
        {% trans %}This folder is empty!{% endtrans %}
      </p>
    {% endif %}

    {% include '_bot_nav.html' %}

  </section>
{% endblock %}