summaryrefslogtreecommitdiff
path: root/templates/webmail/displayheaders.html.ep
diff options
context:
space:
mode:
authorJannis M. Hoffmann <jannis.hoffmann@rwth-aachen.de>2020-10-29 12:13:04 +0100
committerJannis M. Hoffmann <jannis.hoffmann@rwth-aachen.de>2020-10-29 12:13:04 +0100
commitee43823179ee627ac16ea9da8168e5f1bf9619c0 (patch)
tree5e6c36d5629d2ce79f3cb1310998dc715a6f19c7 /templates/webmail/displayheaders.html.ep
Initial commit; Stable version
Diffstat (limited to 'templates/webmail/displayheaders.html.ep')
-rw-r--r--templates/webmail/displayheaders.html.ep46
1 files changed, 46 insertions, 0 deletions
diff --git a/templates/webmail/displayheaders.html.ep b/templates/webmail/displayheaders.html.ep
new file mode 100644
index 0000000..d823d9e
--- /dev/null
+++ b/templates/webmail/displayheaders.html.ep
@@ -0,0 +1,46 @@
+% layout 'mainlayout';
+
+<table id=displayheaders>
+
+ <thead>
+ <tr>
+ <td id=folders>
+ %= include 'headers/_displayfolders';
+ </td>
+ </tr>
+
+% if (my $loginmessage = stash 'loginmessage') {
+ <tr>
+ <td id=loginmessage> <%= $loginmessage %> </td>
+ </tr>
+% }
+
+ <tr>
+ <td id=navigation>
+ %= include 'headers/_display_top_nav';
+ </td>
+ </tr>
+ </thead>
+
+ <tbody>
+ <tr>
+ <td>
+% if (@$msgs) {
+ %= include 'headers/_display_headers';
+% }
+% else {
+ <p id=empty> <%= l 'empty_folder' %> </p>
+% }
+ </td>
+ </tr>
+ </tbody>
+
+ <tfoot>
+ <tr>
+ <td class=navigation>
+ %= include 'headers/_display_bot_nav';
+ </td>
+ </tr>
+ </tfoot>
+
+</table> \ No newline at end of file