Enhancements to Security settings
[hcoop/portal.git] / portal.mlt
1 <% val you = Init.getUser();
2 val bal = Balance.lookupBalance (#bal you);
3 @header [] %>
4
5 <% if Group.inGroupNum 0 then %>
6 <b><h3>Admin</h3></b>
7 <a href="apps?cmd=approved">Approved applicants waiting for accounts</a><br>
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>
12 <a href="roll">Roll call!</a><br>
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="sec">Security settings</a><br>
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
31 <h3><b><a href="money">Your recent account activity</a></b></h3>
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>
39 <b>Balance: $<% #amount bal %></b>
40
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
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)<%
57 end %>
58 <br>
59 <% end %>
60
61 <h3><b>Statistics</b></h3>
62
63 <a href="webbw">Apache bandwidth</a><br>
64 <a href="quotas">Disk usage</a><br>
65
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
78 <h3><b>Other services</b></h3>
79
80 <a href="/webalizer/">Webalizer</a><br>
81 <a href="/mrtg/">MRTG statistics</a><br>
82 <a href="/usermin/">Usermin</a><br>
83 <a href="/squirrel/">SquirrelMail</a><br>
84
85 <% @footer [] %>