Add new style and fix up HTML to avoid boilerplate
[hcoop/zz_old/portal.git] / portal.mlt
CommitLineData
57c305c1 1<% val you = Init.getUser();
2val bal = Balance.lookupBalance (#bal you);
3@header [] %>
8d347a33 4
1fe415e0 5<h3><a href="money">Your recent account activity</a></h3>
f1ea3762 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>
57c305c1 13<b>Balance: $<% #amount bal %></b>
8d347a33 14
1fe415e0 15<% val polls = Poll.listCurrentPolls ();
16switch polls of
17 _::_ => %>
18<h3><a href="poll">Current polls</a></h3>
7f97ec97 19
1fe415e0 20<% foreach pol in polls do %>
7f97ec97 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>
1fe415e0 24<% end
25end %>
7f97ec97 26
1fe415e0 27<% val issues = Support.listOpenIssues (#id you);
28switch issues of
29 _::_ => %>
30<h3><a href="support">Open support issues</a></h3>
d90ddc1b 31
1fe415e0 32<% foreach (name, issue) in issues do %>
d90ddc1b 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)<%
38end %>
39<br>
1fe415e0 40<% end
41end %>
659a3c8c 42
8d347a33 43<% @footer [] %>