diff options
author | Jannis M. Hoffmann <jannis@fehcom.de> | 2023-03-10 13:54:57 +0100 |
---|---|---|
committer | Jannis M. Hoffmann <jannis@fehcom.de> | 2023-03-10 13:54:57 +0100 |
commit | fcf5549584b69e62b6c2f0eb919f6799c7904211 (patch) | |
tree | e5f0e480af0f39f1c0f457ea0aca8d33f8fb4d0b /templates/headers/_pagination2.html.ep | |
parent | df59f9dec32d7f8f08706fd3eb5b784deaa0abfc (diff) |
Proper recursive rendering of mails to html
1. Added raw mode to model
2. Added raw route
3. Moved readmail view parts to RenderMail plugin
4. Renamed displayheaders partial templates
Diffstat (limited to 'templates/headers/_pagination2.html.ep')
-rw-r--r-- | templates/headers/_pagination2.html.ep | 37 |
1 files changed, 0 insertions, 37 deletions
diff --git a/templates/headers/_pagination2.html.ep b/templates/headers/_pagination2.html.ep deleted file mode 100644 index 8bff0bf..0000000 --- a/templates/headers/_pagination2.html.ep +++ /dev/null @@ -1,37 +0,0 @@ -%= form_for '' => (class => 'pure-form') => begin - <a href="<%= url_with->query({start => $pgn->{first_page}[0]}) %>"> - <img src="/first.gif" alt="<%= l('first') . ' ' . l 'page' %>"> - </a> - <a href="<%= url_with->query({start => $pgn->{prev_page}[0]}) %>"> - <img src="/left.gif" alt="<%= l('previous') . ' ' . l 'page' %>"> - </a> - - <div style="white-space: nowrap"> - [ -%= label_for custompage => ucfirst l('page') => (style => 'display: inline') - <%= number_field start - => (id => 'custompage') - => (size => 3) - => (placeholder => $pgn->{current_page}+1) - => (min => 1) - => (max => $pgn->{total_pages} - => (style => 'display: inline')) %> -%= l 'of' -%= $pgn->{total_pages} - ] - </div> - -% my $h = $c->req->query_params->to_hash; -% while (my ($k, $v) = each %$h) { -% if ($k ne 'start') { -%= hidden_field $k => $v -% } -% } - - <a href="<%= url_with->query({start => $pgn->{next_page}[0]}) %>"> - <img src="/right.gif" alt="<%= l('next') . ' ' . l 'page' %>"> - </a> - <a href="<%= url_with->query({start => $pgn->{last_page}[0]}) %>"> - <img src="/last.gif" alt="<%= l('last') . ' ' . l('page') %>"> - </a> -% end |