Support retiring balances of departed members
[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>
f971918d 19<a href="sec">Security settings</a><br>
f98251aa 20<a href="contact">Contact information</a><br>
21<a href="location">Your geographic locations</a><br>
22<a href="link">Public URL directory</a><br>
23
24<b><h3>Support requests</h3></b>
25
26<a href="domain">Request control of a domain with domtool</a><br>
27<a href="apt">Request Debian apt packages</a><br>
28<a href="list">Request a Mailman mailing list</a><br>
29<a href="support">Other support request</a><br>
30
57c305c1 31<h3><b><a href="money">Your recent account activity</a></b></h3>
f1ea3762 32
33<table>
34<tr> <td><b>Date</b></td> <td><b>Description</b></td> <td><b>Amount</b></td> </tr>
35<% foreach (amount, trn) in Money.listUserTransactionsLimit (Init.getUserId (), 5) do %>
36<tr> <td><% #d trn %></td> <td><a href="money?trn=<% #id trn %>"><% Web.html (#descr trn) %></a></td> <td><% amount %>/<% #amount trn %></td> </tr>
37<% end %>
38</table>
57c305c1 39<b>Balance: $<% #amount bal %></b>
8d347a33 40
7f97ec97 41<h3><b><a href="poll">Current polls</a></b></h3>
42
43<% foreach pol in Poll.listCurrentPolls () do %>
44<li> <a href="poll?id=<% #id pol %>"><% Web.html (#title pol) %></a>
45<% if Poll.takingVotes pol then %><a href="poll?vote=<% #id pol %>">[VOTE]</a><% end %>
46(<% Web.html (#starts pol) %> to <% Web.html (#ends pol) %>)</li>
47<% end %>
48
d90ddc1b 49<h3><b><a href="support">Open support issues</a></b></h3>
50
51<% foreach (name, issue) in Support.listOpenIssues (#id you) do %>
52<a href="user?id=<% #usr issue %>"><% name %></a>: <a href="issue?cat=<% #cat issue %>&id=<% #id issue %>"><% Web.html (#title issue) %></a>
53<% switch #status issue of
54 Support.NEW => %>(New)<%
55 | Support.PENDING => %>(Pending)<%
56 | Support.CLOSED => %>(Closed)<%
57end %>
58<br>
59<% end %>
60
a41f8250 61<h3><b>Statistics</b></h3>
62
63<a href="webbw">Apache bandwidth</a><br>
64<a href="quotas">Disk usage</a><br>
65
f98251aa 66<h3><b>Public pages</b></h3>
67
68<a href="http://hcoop.net/dyn/members.html">Member directory</a><br>
69<a href="http://hcoop.net/dyn/locs.html">Member location summary</a><br>
70<a href="http://hcoop.net/dyn/sites.html">URL directory</a><br>
71
72<h3><b>Miscellaneous</b></h3>
73
74<a href="apps">Review pending membership applications</a><br>
75<a href="dir">Contact information directory</a><br>
76<a href="poll">Polls</a><br>
77
659a3c8c 78<h3><b>Other services</b></h3>
79
80<a href="/webalizer/">Webalizer</a><br>
81<a href="/mrtg/">MRTG statistics</a><br>
f3c86948 82<a href="http://nms.interserver.net/cac/nms.php?server_name=bmV3Lmhjb29wLm5ldA==">InterServer bandwidth statistics</a><br>
659a3c8c 83<a href="/usermin/">Usermin</a><br>
84<a href="/squirrel/">SquirrelMail</a><br>
85
8d347a33 86<% @footer [] %>