From 2cf2a68bd1c25d8fe4f3126f40bd57982cc6b2a4 Mon Sep 17 00:00:00 2001 From: "Jannis M. Hoffmann" Date: Sun, 3 Dec 2023 19:22:12 +0100 Subject: initial commit --- src/jwebmail/templates/_main_table.html | 37 +++++++++++++++++++++++++++++++++ 1 file changed, 37 insertions(+) create mode 100644 src/jwebmail/templates/_main_table.html (limited to 'src/jwebmail/templates/_main_table.html') diff --git a/src/jwebmail/templates/_main_table.html b/src/jwebmail/templates/_main_table.html new file mode 100644 index 0000000..02f9f81 --- /dev/null +++ b/src/jwebmail/templates/_main_table.html @@ -0,0 +1,37 @@ +
+ + {% for msg in msgs %} + + +
+ {{ loop.index + (pgn.page - 1) * pgn.per_page }} +
+ +
+
+
+ {{ msg.head.sender.0.display_name or msg.head.sender.0.address or msg.head.from.0.display_name or msg.head.from.0.address }} +
+ +
+ {{ parse_iso_date(msg.head.date)|datetimeformat }} +
+ + + +
+ {{ msg.byte_size|byte_size10 }} +
+
+
+ +
+ +
+
+ + {% endfor %} + +
-- cgit v1.2.3