payment: note that Stripe has instituted an additional 1% fee for non-US cards
[hcoop/portal.git] / apps.mlt
1 <% @header [("title", ["Membership applications"])];
2
3 val you = Init.getUserId ();
4 val board = Group.reallyInGroupName "board";
5 val root = Group.inGroupNum 0;
6
7 ref showNormal = true;
8
9 if $"show" <> "" then
10 showNormal := false;
11 val usr = Web.stoi ($"show");
12 val user = Init.lookupUser usr;
13 val appl = App.lookupApp (#app user) %>
14
15 <table class="blanks">
16 <tr> <td>Received:</td> <td><% #applied appl %> (<% Util.diffFromNow (#applied appl) %> ago)</td> </tr>
17 <tr> <td>Approved by:</td> <td><%
18 ref first = true;
19 ref found = false;
20 val votes = App.votes (#id appl);
21 foreach (id, name) in votes do
22 if first then
23 first := false
24 else
25 %>, <%
26 end
27 %><a href="user?id=<% id %>"><% name %></a><%
28 if id = you then
29 found := true
30 %> <a href="apps?unvote=<% #id appl %>">[Unvote]</a><%
31 end
32 end %> <% if (iff board then not found else false) then %><a href="apps?vote=<% #id appl %>">[Vote]</a><% end %></td> </tr>
33 <tr> <td>Username:</td> <td><% #name appl %></td> </tr>
34 <tr> <td>Real name:</td> <td><% Web.html (#rname appl) %></td> </tr>
35 <tr> <td>E-mail:</td> <td><a href="mailto:<% #email appl %>"><% #email appl %></a></td> </tr>
36 <tr> <td>Forward e-mail?</td> <td><% if #forward appl then %>yes<% else %>no<% end %></td> </tr>
37 <tr> <td>Proposed uses:</td> <td><% Web.htmlNl (#uses appl) %></td> </tr>
38 <tr> <td>Other information:</td> <td><% Web.htmlNl (#other appl) %></td> </tr>
39 </table>
40 <% elseif $"vote" <> "" then
41 Group.requireGroupName "board";
42 App.vote (you, Web.stoi ($"vote"))
43 %><h3>Vote registered</h3><%
44 elseif $"unvote" <> "" then
45 Group.requireGroupName "board";
46 App.unvote (you, Web.stoi ($"unvote"))
47 %><h3>Unvote registered</h3><%
48 elseif $"deny" <> "" then
49 showNormal := false;
50 val appl = App.lookupApp (Web.stoi ($"deny"))
51 %><h3>Deny application for <% #name appl %></h3>
52 <form action="apps" method="post">
53 <input type="hidden" name="deny2" value="<% $"deny" %>">
54 <b>Reason</b>:<br>
55 <textarea name="msg" rows="5" cols="80" wrap="soft"></textarea><br>
56 <input type="submit" value="Submit">
57 </form><%
58 elseif $"deny2" <> "" then
59 Group.requireGroupName "board";
60 if not (App.deny (Web.stoi ($"deny2"), $"msg")) then
61 %><h3>Error denying application</h3><%
62 else
63 %><h3>Application denied</h3><%
64 end
65 elseif $"approve" <> "" then
66 showNormal := false;
67 val appl = App.lookupApp (Web.stoi ($"approve"))
68 %><h3>Approve application for <% #name appl %></h3>
69 <form action="apps" method="post">
70 <input type="hidden" name="approve2" value="<% $"approve" %>">
71 <b>Message</b> (will be added at the end of <tt>~hcoop/portal/welcome.txt</tt>, so you might want to include some introductory text):<br>
72 <textarea name="msg" rows="5" cols="80" wrap="soft"></textarea><br>
73 <input type="submit" value="Submit">
74 </form><%
75 elseif $"approve2" <> "" then
76 Group.requireGroupName "board";
77 if not (App.approve (Web.stoi ($"approve2"), $"msg")) then
78 %><h3>Error approving application</h3><%
79 else
80 %><h3>Application approved</h3><%
81 end
82 elseif $"cmd" = "approved" then
83 showNormal := false
84
85 %><h3>Pending applications</h3><%
86
87 foreach appl in App.listApps [App.ACCEPTED, App.BEING_ADDED] do %>
88 <br><hr><br>
89 <table class="blanks">
90 <tr> <td>Received:</td> <td><% #applied appl %> (<% Util.diffFromNow (#applied appl) %> ago)</td> </tr>
91 <tr> <td>Approved by:</td> <td><%
92 ref first = true;
93 ref found = false;
94 foreach (id, name) in App.votes (#id appl) do
95 if first then
96 first := false
97 else
98 %>, <%
99 end
100 %><a href="user?id=<% id %>"><% name %></a><%
101 end %> </td> </tr>
102 <tr> <td>Username:</td> <td><% #name appl %></td> </tr>
103 <tr> <td>Real name:</td> <td><% Web.html (#rname appl) %></td> </tr>
104 <tr> <td>E-mail address:</td> <td><a href="mailto:<% #email appl %>"><% #email appl %></a></td> </tr>
105 <% switch #paypal appl of
106 SOME s => %><tr> <td>PayPal:</td> <td><a href="mailto:<% s %>"><% s %></a></td> </tr>
107 <% end %>
108 <tr> <td>Forward e-mail?</td> <td><% if #forward appl then %>yes<% else %>no<% end %></td> </tr>
109 <tr> <td>Proposed uses:</td> <td><% Web.htmlNl (#uses appl) %></td> </tr>
110 <tr> <td>Other information:</td> <td><% Web.htmlNl (#other appl) %></td> </tr>
111 <% if #status appl = App.BEING_ADDED then %><tr> <td colspan="2" align="left"><font color="red"><b>WARNING: Someone already followed the add link for this application. Maybe he forgot to finish.</b></font></td></tr><% end %>
112 </table>
113
114 <% if root then %>
115 <a href="apps?add=<% #id appl %>">Add this member.</a><br>
116 <% end
117 end
118 elseif $"add" <> "" then
119 Group.requireGroupNum 0;
120 showNormal := false;
121 val id = Web.stoi ($"add");
122 val appl = App.lookupApp id;
123 App.preAdd id %>
124
125 First, run this on gibran:
126 <blockquote><tt>new-user <% #name appl %> "<% #rname appl %>"<% if #forward appl then %> "<% #email appl %>"<% end %></tt></blockquote>
127
128 <form action="users" method="post">
129 <input type="hidden" name="app" value="<% #id appl %>">
130 <table class="blanks">
131 <tr> <td>Name:</td> <td><input name="name" value="<% Web.html (#name appl) %>"></td> </tr>
132 <tr> <td>Real name:</td> <td><input name="rname" value="<% Web.html (#rname appl) %>"></td> </tr>
133 <tr> <td>Funded by:</td> <td><select name="bal">
134 <option value="">A new balance</option>
135 <% foreach bal in Balance.listBalances () do %>
136 <option value="<% #id bal %>"><% Web.html (#name bal) %></option>
137 <% end %>
138 </select></td></tr>
139 <tr> <td>Initial transaction amount:</td> <td><input name="amount"></td> </tr>
140 <tr> <td>Initial transaction description:</td> <td><input name="descr"></td> </tr>
141 <!--tr> <td><input type="checkbox" name="subscribe" checked></td> <td>Subscribe to hcoop-announce</td> </tr-->
142 <tr> <td>Groups:</td> <td><select name="grp" size="5" multiple>
143 <% foreach group in Group.listGroups () do %>
144 <option value="<% #id group %>"<% if #name group = "paying" then %> selected<% end %>><% Web.html (#name group) %></option>
145 <% end %>
146 </select></td></tr>
147 <tr> <td><input type="submit" name="cmd" value="Create"></td> </tr>
148 </table>
149 </form>
150
151 <a href="apps?abort=<% #id appl %>">Abort adding this member</a>
152
153 <% elseif $"abort" <> "" then
154 App.abortAdd (Web.stoi ($"abort"))
155 %><h3>Aborted</h3><%
156
157 end %>
158
159 <% if showNormal then %>
160 <h3>Pending applications</h3>
161
162 <% foreach appl in App.listApps [App.PENDING] do %>
163 <br><hr><br>
164 <table class="blanks">
165 <tr> <td>Received:</td> <td><% #applied appl %> (<% Util.diffFromNow (#applied appl) %> ago)</td></tr>
166 <tr> <td>Approved by:</td> <td><%
167 ref first = true;
168 ref found = false;
169 val votes = App.votes (#id appl);
170 foreach (id, name) in votes do
171 if first then
172 first := false
173 else
174 %>, <%
175 end
176 %><a href="user?id=<% id %>"><% name %></a><%
177 if id = you then
178 found := true
179 %> <a href="apps?unvote=<% #id appl %>">[Unvote]</a><%
180 end
181 end %> <% if (iff board then not found else false) then %><a href="apps?vote=<% #id appl %>">[Vote]</a><% end %></td> </tr>
182 <tr> <td>Username:</td> <td><% #name appl %></td> </tr>
183 <tr> <td>Real name:</td> <td><% Web.html (#rname appl) %></td> </tr>
184 <tr> <td>E-mail address:</td> <td><a href="mailto:<% #email appl %>"><% #email appl %></a></td> </tr>
185 <% switch #paypal appl of
186 SOME s => %><tr> <td>PayPal:</td> <td><a href="mailto:<% s %>"><% s %></a></td> </tr>
187 <% end %>
188 <tr> <td>Forward e-mail?</td> <td><% if #forward appl then %>yes<% else %>no<% end %></td> </tr>
189 <tr> <td>Proposed uses:</td> <td><% Web.htmlNl (#uses appl) %></td> </tr>
190 <tr> <td>Other information:</td> <td><% Web.htmlNl (#other appl) %></td> </tr>
191 </table>
192
193 <% if board then %>
194 <% if length votes >= 3 then %><a href="apps?approve=<% #id appl %>">Approve this member.</a><br><% end %>
195 <a href="apps?deny=<% #id appl %>">Deny this application.</a>
196 <% end %>
197 <% end
198 end %>
199
200 <% @footer[] %>