Fix up joining with new header/footer, too
[hcoop/portal.git] / portal.mlt
1 <% val you = Init.getUser();
2 val bal = Balance.lookupBalance (#bal you);
3 @header [] %>
4
5 <h3><a href="money">Your recent account activity</a></h3>
6
7 <table>
8 <tr> <td><b>Date</b></td> <td><b>Description</b></td> <td><b>Amount</b></td> </tr>
9 <% foreach (amount, trn) in Money.listUserTransactionsLimit (Init.getUserId (), 5) do %>
10 <tr> <td><% #d trn %></td> <td><a href="money?trn=<% #id trn %>"><% Web.html (#descr trn) %></a></td> <td><% amount %>/<% #amount trn %></td> </tr>
11 <% end %>
12 </table>
13 <b>Balance: $<% #amount bal %></b>
14
15 <% val polls = Poll.listCurrentPolls ();
16 switch polls of
17 _::_ => %>
18 <h3><a href="poll">Current polls</a></h3>
19
20 <% foreach pol in polls do %>
21 <li> <a href="poll?id=<% #id pol %>"><% Web.html (#title pol) %></a>
22 <% if Poll.takingVotes pol then %><a href="poll?vote=<% #id pol %>">[VOTE]</a><% end %>
23 (<% Web.html (#starts pol) %> to <% Web.html (#ends pol) %>)</li>
24 <% end
25 end %>
26
27 <% val issues = Support.listOpenIssues (#id you);
28 switch issues of
29 _::_ => %>
30 <h3><a href="support">Open support issues</a></h3>
31
32 <% foreach (name, issue) in issues do %>
33 <a href="user?id=<% #usr issue %>"><% name %></a>: <a href="issue?cat=<% #cat issue %>&id=<% #id issue %>"><% Web.html (#title issue) %></a>
34 <% switch #status issue of
35 Support.NEW => %>(New)<%
36 | Support.PENDING => %>(Pending)<%
37 | Support.CLOSED => %>(Closed)<%
38 end %>
39 <br>
40 <% end
41 end %>
42
43 <% @footer [] %>