payment: note that Stripe has instituted an additional 1% fee for non-US cards
[hcoop/portal.git] / portal.mlt
CommitLineData
e68ddb80
AC
1<% val you = Init.getUser();
2val bal = Balance.lookupBalance (#bal you);
466c5944 3val deposit = Balance.depositAmount (#id bal);
b5dc79ca 4val showBal = Util.sub (#amount bal, deposit);
e68ddb80 5@header [] %>
208e2cbc 6
4f13b6c6 7<!--
588a1662 8<div class="news">
95446a44 9
588a1662 10<h3>Welcome to the Portal On Navajos</h3>
e5d79494 11
588a1662
CE
12<p><a href="https://wiki.hcoop.net/Hardware#deleuze">Deleuze</a>
13suffered a hardware failure, and the benefit is that the portal is now
14running on our Debian Wheezy web server. List preferences are
15temporarily non-functional, email <a
16href="mailto:admins@hcoop.net"><tt>admins@hcoop.net</tt></a> if you
17would like to change your hcoop list subscriptions.</p>
95446a44 18
95446a44 19</div>
4f13b6c6 20-->
95446a44 21
cf10853e 22<% @payment [] %>
17f5503e 23
b6dd1aaf 24<h3><a href="money">Your recent account activity</a></h3>
f49e1088 25
b5dc79ca 26<% ref running = showBal %>
64264243 27<table class="data">
b5dc79ca 28<tr> <td><b>Date</b></td> <td><b>Description</b></td> <td><b>Amount</b></td> <td><b>Balance</b></td></tr>
f49e1088 29<% foreach (amount, trn) in Money.listUserTransactionsLimit (Init.getUserId (), 5) do %>
64264243
CE
30<tr> <td><% #d trn %></td> <td><a href="money?trn=<% #id trn %>"><% Web.html (#descr trn) %></a></td> <td style="text-align: right"><% amount %>/<% #amount trn %></td>
31<td style="text-align: right"><% running %></td></tr>
b5dc79ca
AC
32<% running := Util.sub (running, amount)
33end %>
f49e1088 34</table>
60465e67 35<a href="money?lookback=inf">Show all transactions</a><br>
b5dc79ca 36<b>Balance: $<% showBal %></b><br>
c8abf2d9 37<b>Deposit: $<% deposit %></b> (3 months of dues at the minimal <a href="pledge">pledge level</a>)
96bd398e 38
f8b39e09
CE
39<h3>Pending Stripe Payments</h3>
40
41<table>
42<tr><td><strong>Date</strong></td><td><strong>Net Amount</strong> (After Fees)</td></tr>
43<% foreach stripePmt in Money.listUserPendingStripePayments
44 (Init.getUserId () ) do %>
45<tr>
46 <td><% #paid_on stripePmt %></td>
64264243 47 <td style="text-align: right">$<% #net stripePmt %></td>
f8b39e09
CE
48</tr>
49<% end %>
50</table>
51
52
c8abf2d9 53<!--b>Balance: $<% #amount bal %></b-->
208e2cbc 54
b6dd1aaf
AC
55<% val polls = Poll.listCurrentPolls ();
56switch polls of
57 _::_ => %>
58<h3><a href="poll">Current polls</a></h3>
56dbfc30 59
b6dd1aaf 60<% foreach pol in polls do %>
56dbfc30
AC
61<li> <a href="poll?id=<% #id pol %>"><% Web.html (#title pol) %></a>
62<% if Poll.takingVotes pol then %><a href="poll?vote=<% #id pol %>">[VOTE]</a><% end %>
63(<% Web.html (#starts pol) %> to <% Web.html (#ends pol) %>)</li>
b6dd1aaf
AC
64<% end
65end %>
56dbfc30 66
b6dd1aaf
AC
67<% val issues = Support.listOpenIssues (#id you);
68switch issues of
69 _::_ => %>
70<h3><a href="support">Open support issues</a></h3>
5d851d7c 71
b6dd1aaf 72<% foreach (name, issue) in issues do %>
5d851d7c
AC
73<a href="user?id=<% #usr issue %>"><% name %></a>: <a href="issue?cat=<% #cat issue %>&id=<% #id issue %>"><% Web.html (#title issue) %></a>
74<% switch #status issue of
75 Support.NEW => %>(New)<%
76 | Support.PENDING => %>(Pending)<%
77 | Support.CLOSED => %>(Closed)<%
78end %>
79<br>
b6dd1aaf 80<% end
d5f8418b 81end;
eaa96514 82
432aa258
AC
83val {total, vhosts} = Stats.getWebbwUser {user = Init.getUserName (), last = 0};
84switch vhosts of
85 _ :: _ =>
86 %><h3>Your web traffic this month</h3>
64264243 87 <table class="data"><tr><th>Site</th> <th>Data transferred (kB)</th></tr><%
432aa258 88 foreach e in vhosts do %>
64264243 89 <tr><td style="text-align: right"><a href="<% if #ssl (#host e) then %>https<% else %>http<% end %>://<% #hostname (#host e) %>/"><% #hostname (#host e) %><% if #ssl (#host e) then %> (SSL)<% end %></a> <a href="/webalizer/<% #id (#host e) %>/">[detail]</a></td><td style="text-align: right"><% #size e %></td></tr>
432aa258
AC
90 <% end %>
91 </table>
92<% end;
93
d5f8418b 94@footer [] %>