Fix the 'view posts' table

This commit is contained in:
swag 2021-12-19 00:59:36 -05:00
parent d8ae4529e9
commit 8a4c5eab44

View File

@ -1,8 +1,8 @@
% layout 'default'; % layout 'default';
% title 'Home'; % title 'Home';
<h2>Messages from the World Wide Web</h2> <h2>Messages from the World Wide Web</h2>
<% for my $row (reverse @$view_posts) { %>
<table> <table>
<% for my $row (reverse @$view_posts) { %>
<tr> <tr>
<th>Date:</th> <th>Date:</th>
<td><%= @$row[0] %></td> <td><%= @$row[0] %></td>
@ -15,7 +15,10 @@
<th>Message:</th> <th>Message:</th>
<td><%= @$row[2] %></td> <td><%= @$row[2] %></td>
</tr> </tr>
</table> <tr>
<br> <th>&nbsp;</th>
<td>&nbsp;</td>
</tr>
<% } %> <% } %>
</table>
<%= pagination($this_page, $last_page, '?page={page}') %> <%= pagination($this_page, $last_page, '?page={page}') %>