diff options
author | Jannis M. Hoffmann <jannis@fehcom.de> | 2023-03-13 21:34:03 +0100 |
---|---|---|
committer | Jannis M. Hoffmann <jannis@fehcom.de> | 2023-03-13 21:34:03 +0100 |
commit | 8ee2d7149baa58ea225cb40e0f95030ee21f1081 (patch) | |
tree | 11d2bd52f36d3d566f9abcb30654b9bd78e56422 /templates/displayheaders/_main_table.html.ep | |
parent | 6441b5ad6657873fcd8f3695515fa6ef3bc4e6f5 (diff) |
Split up Helper plugin and added Views instead
Diffstat (limited to 'templates/displayheaders/_main_table.html.ep')
-rw-r--r-- | templates/displayheaders/_main_table.html.ep | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/templates/displayheaders/_main_table.html.ep b/templates/displayheaders/_main_table.html.ep index 5430c15..06bbbfc 100644 --- a/templates/displayheaders/_main_table.html.ep +++ b/templates/displayheaders/_main_table.html.ep @@ -81,7 +81,7 @@ --> <div class="pure-u-1 pure-u-md-4-24"> - % my $date = parse_iso_date $msg->{head}{date}; + % my $date = $v->parse_iso_date($msg->{head}{date}); %= join('/', $date->{mday}, $date->{month}, $date->{year}) . " $date->{hour}:$date->{min}"; </div> @@ -98,7 +98,7 @@ </td> <td class="hide-small" style="text-align: right; white-space: nowrap"> - %= print_sizes10 $msg->{byte_size}; + %= $v->print_sizes10($msg->{byte_size}); </td> <td> |