Roll call system, and update forms to method=post
[hcoop/zz_old/portal.git] / portal.mlt
CommitLineData
57c305c1 1<% val you = Init.getUser();
2val bal = Balance.lookupBalance (#bal you);
3@header [] %>
8d347a33 4
f98251aa 5<% if Group.inGroupNum 0 then %>
6<b><h3>Admin</h3></b>
add44c00 7<a href="apps?cmd=approved">Approved applicants waiting for accounts</a><br>
f98251aa 8<a href="users">Members</a><br>
9<a href="groups">Groups</a><br>
10<a href="balances">Balances</a><br>
11<a href="kind">Contact kinds</a><br>
add44c00 12<a href="roll">Roll call!</a><br>
f98251aa 13<% end %>
14
15<b><h3>Your account</h3></b>
16
17<a href="pref">Preferences</a><br>
18<a href="money">Financial</a><br>
19<a href="contact">Contact information</a><br>
20<a href="location">Your geographic locations</a><br>
21<a href="link">Public URL directory</a><br>
22
23<b><h3>Support requests</h3></b>
24
25<a href="domain">Request control of a domain with domtool</a><br>
26<a href="apt">Request Debian apt packages</a><br>
27<a href="list">Request a Mailman mailing list</a><br>
28<a href="support">Other support request</a><br>
29
57c305c1 30<h3><b><a href="money">Your recent account activity</a></b></h3>
f1ea3762 31
32<table>
33<tr> <td><b>Date</b></td> <td><b>Description</b></td> <td><b>Amount</b></td> </tr>
34<% foreach (amount, trn) in Money.listUserTransactionsLimit (Init.getUserId (), 5) do %>
35<tr> <td><% #d trn %></td> <td><a href="money?trn=<% #id trn %>"><% Web.html (#descr trn) %></a></td> <td><% amount %>/<% #amount trn %></td> </tr>
36<% end %>
37</table>
57c305c1 38<b>Balance: $<% #amount bal %></b>
8d347a33 39
7f97ec97 40<h3><b><a href="poll">Current polls</a></b></h3>
41
42<% foreach pol in Poll.listCurrentPolls () do %>
43<li> <a href="poll?id=<% #id pol %>"><% Web.html (#title pol) %></a>
44<% if Poll.takingVotes pol then %><a href="poll?vote=<% #id pol %>">[VOTE]</a><% end %>
45(<% Web.html (#starts pol) %> to <% Web.html (#ends pol) %>)</li>
46<% end %>
47
d90ddc1b 48<h3><b><a href="support">Open support issues</a></b></h3>
49
50<% foreach (name, issue) in Support.listOpenIssues (#id you) do %>
51<a href="user?id=<% #usr issue %>"><% name %></a>: <a href="issue?cat=<% #cat issue %>&id=<% #id issue %>"><% Web.html (#title issue) %></a>
52<% switch #status issue of
53 Support.NEW => %>(New)<%
54 | Support.PENDING => %>(Pending)<%
55 | Support.CLOSED => %>(Closed)<%
56end %>
57<br>
58<% end %>
59
a41f8250 60<h3><b>Statistics</b></h3>
61
62<a href="webbw">Apache bandwidth</a><br>
63<a href="quotas">Disk usage</a><br>
64
f98251aa 65<h3><b>Public pages</b></h3>
66
67<a href="http://hcoop.net/dyn/members.html">Member directory</a><br>
68<a href="http://hcoop.net/dyn/locs.html">Member location summary</a><br>
69<a href="http://hcoop.net/dyn/sites.html">URL directory</a><br>
70
71<h3><b>Miscellaneous</b></h3>
72
73<a href="apps">Review pending membership applications</a><br>
74<a href="dir">Contact information directory</a><br>
75<a href="poll">Polls</a><br>
76
659a3c8c 77<h3><b>Other services</b></h3>
78
79<a href="/webalizer/">Webalizer</a><br>
80<a href="/mrtg/">MRTG statistics</a><br>
81<a href="/usermin/">Usermin</a><br>
82<a href="/squirrel/">SquirrelMail</a><br>
83
8d347a33 84<% @footer [] %>