money: make boot and freeze worthy lists easier to use
authorClinton Ebadi <clinton@unknownlamer.org>
Sun, 8 Feb 2015 19:03:02 +0000 (14:03 -0500)
committerClinton Ebadi <clinton@unknownlamer.org>
Sun, 8 Feb 2015 19:03:02 +0000 (14:03 -0500)
Right align money and add transaction history link

money.mlt

index eca86f5..865cd09 100644 (file)
--- a/money.mlt
+++ b/money.mlt
@@ -614,7 +614,8 @@ elseif $"cmd" = "freezeworthy" then
 <table class="data">
 <tr> <th>Member</th> <th>Balance</th> </tr>
 <% foreach dq in dqs do %>
-<tr> <td><a href="user?id=<% #id dq %>"><% #name dq %></a></td> <td>$<% #balance dq %></td>
+<tr> <td><a href="user?id=<% #id dq %>"><% #name dq %></a></td> <td style="text-align: right">$<% #balance dq %></td>
+<td><a href="money?hist=<% #id dq %>">[History]</a></td>
 <% if #joinedThisMonth dq then %><td><i>(joined this month)</i></td><% end %></tr>
 <% end %>
 </table>
@@ -625,7 +626,7 @@ elseif $"cmd" = "freezeworthy" then
 <table class="data">
 <tr> <th>Member</th> <th>Balance</th> </tr>
 <% foreach dq in dqs do %>
-<tr> <td><a href="user?id=<% #id dq %>"><% #name dq %></a></td> <td>$<% #balance dq %></td>
+<tr> <td><a href="user?id=<% #id dq %>"><% #name dq %></a></td> <td style="text-align: right">$<% #balance dq %></td><td><a href="money?hist=<% #id dq %>">[History]</a></td>
 <% if #joinedThisMonth dq then %><td><i>(joined this month)</i></td><% end %></tr>
 <% end %>
 </table>