summaryrefslogtreecommitdiff
path: root/src/jwebmail/templates/displayheaders.html
diff options
context:
space:
mode:
authorJannis M. Hoffmann <jannis@fehcom.de>2023-12-03 19:22:12 +0100
committerJannis M. Hoffmann <jannis@fehcom.de>2023-12-03 19:22:12 +0100
commit2cf2a68bd1c25d8fe4f3126f40bd57982cc6b2a4 (patch)
treeb5c8ed0e1cfe8eac311829296a9aca062bb1abc1 /src/jwebmail/templates/displayheaders.html
initial commit
Diffstat (limited to 'src/jwebmail/templates/displayheaders.html')
-rw-r--r--src/jwebmail/templates/displayheaders.html32
1 files changed, 32 insertions, 0 deletions
diff --git a/src/jwebmail/templates/displayheaders.html b/src/jwebmail/templates/displayheaders.html
new file mode 100644
index 0000000..ce9ea6e
--- /dev/null
+++ b/src/jwebmail/templates/displayheaders.html
@@ -0,0 +1,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 %}