Move old member add form to a separate page
[hcoop/zz_old/portal.git] / apps.mlt
1 <% @header [("title", ["Membership applications"])];
2
3 val you = Init.getUserId ();
4 val board = Group.inGroupName "board";
5 val root = Group.inGroupNum 0;
6
7 ref showNormal = true;
8
9 if $"vote" <> "" then
10 Group.requireGroupName "board";
11 App.vote (you, Web.stoi ($"vote"))
12 %><h3>Vote registered</h3><%
13 elseif $"unvote" <> "" then
14 Group.requireGroupName "board";
15 App.unvote (you, Web.stoi ($"unvote"))
16 %><h3>Unvote registered</h3><%
17 elseif $"deny" <> "" then
18 showNormal := false;
19 val appl = App.lookupApp (Web.stoi ($"deny"))
20 %><h3>Deny application for <% #name appl %></h3>
21 <form action="apps" method="post">
22 <input type="hidden" name="deny2" value="<% $"deny" %>">
23 <b>Reason</b>:<br>
24 <textarea name="msg" rows="5" cols="80" wrap="soft"></textarea><br>
25 <input type="submit" value="Submit">
26 </form><%
27 elseif $"deny2" <> "" then
28 Group.requireGroupName "board";
29 if not (App.deny (Web.stoi ($"deny2"), $"msg")) then
30 %><h3>Error denying application</h3><%
31 else
32 %><h3>Application denied</h3><%
33 end
34 elseif $"approve" <> "" then
35 showNormal := false;
36 val appl = App.lookupApp (Web.stoi ($"approve"))
37 %><h3>Approve application for <% #name appl %></h3>
38 <form action="apps" method="post">
39 <input type="hidden" name="approve2" value="<% $"approve" %>">
40 <b>Message</b>:<br>
41 <textarea name="msg" rows="5" cols="80" wrap="soft"></textarea><br>
42 <input type="submit" value="Submit">
43 </form><%
44 elseif $"approve2" <> "" then
45 Group.requireGroupName "board";
46 if not (App.approve (Web.stoi ($"approve2"), $"msg")) then
47 %><h3>Error approving application</h3><%
48 else
49 %><h3>Application approved</h3><%
50 end
51 elseif $"cmd" = "approved" then
52 showNormal := false
53
54 %><h3>Pending applications</h3><%
55
56 foreach appl in App.listApps App.ACCEPTED do %>
57 <br><hr><br>
58 <table class="blanks">
59 <tr> <td>Received:</td> <td><% #applied appl %></td> </tr>
60 <tr> <td>Approved by:</td> <td><%
61 ref first = true;
62 ref found = false;
63 foreach (id, name) in App.votes (#id appl) do
64 if first then
65 first := false
66 else
67 %>, <%
68 end
69 %><a href="user?id=<% id %>"><% name %></a><%
70 end %> </td> </tr>
71 <tr> <td>Username:</td> <td><% #name appl %></td> </tr>
72 <tr> <td>Real name:</td> <td><% Web.html (#rname appl) %></td> </tr>
73 <tr> <td>E-mail address:</td> <td><a href="mailto:<% #email appl %>"><% #email appl %></a></td> </tr>
74 <tr> <td>Forward e-mail?</td> <td><% if #forward appl then %>yes<% else %>no<% end %></td> </tr>
75 <tr> <td>Proposed uses:</td> <td><% Web.htmlNl (#uses appl) %></td> </tr>
76 <tr> <td>Other information:</td> <td><% Web.htmlNl (#other appl) %></td> </tr>
77 </table>
78
79 <% if root then %>
80 <a href="apps?add=<% #id appl %>">Add this member.</a><br>
81 <% end
82 end
83 elseif $"add" <> "" then
84 Group.requireGroupNum 0;
85 showNormal := false;
86 val id = Web.stoi ($"add");
87 val appl = App.lookupApp id;
88 App.add id %>
89
90 First, create this UNIX user:
91 <blockquote><tt>portal_adduser <% #name appl %> "<% #rname appl %>"<% if #forward appl then %> "<% #email appl %>"<% end %></tt></blockquote>
92
93 <p>You should then run <tt>visudo</tt> to add <% #name appl %> to the <tt>MEMBERS</tt> group. If you're not transmitting <% #name appl %>'s password to him by other means, run <tt>savepass <% #name appl %> &lt;password&gt;</tt> to save it in <tt>~<% #name appl %>/.pass</tt>. If <% #name appl %> is bootstrapping with public-key ssh, don't forget to run <tt>savekey <% #name appl %> &lt;authorized_keys file location&gt;</tt>.</p>
94
95 <form action="users" method="post">
96 <input type="hidden" name="app" value="<% #id appl %>">
97 <table class="blanks">
98 <tr> <td>Name:</td> <td><input name="name" value="<% Web.html (#name appl) %>"></td> </tr>
99 <tr> <td>Real name:</td> <td><input name="rname" value="<% Web.html (#rname appl) %>"></td> </tr>
100 <tr> <td>Funded by:</td> <td><select name="bal">
101 <option value="">A new balance</option>
102 <% foreach bal in Balance.listBalances () do %>
103 <option value="<% #id bal %>"><% Web.html (#name bal) %></option>
104 <% end %>
105 </select></td></tr>
106 <tr> <td>Initial transaction amount:</td> <td><input name="amount"></td> </tr>
107 <tr> <td>Initial transaction description:</td> <td><input name="descr" value="PayPal"></td> </tr>
108 <tr> <td><input type="checkbox" name="subscribe" checked></td> <td>Subscribe to hcoop-announce</td> </tr>
109 <tr> <td>Groups:</td> <td><select name="grp" size="5" multiple>
110 <% foreach group in Group.listGroups () do %>
111 <option value="<% #id group %>"<% if #name group = "paying" then %> selected<% end %>><% Web.html (#name group) %></option>
112 <% end %>
113 </select></td></tr>
114 <tr> <td><input type="submit" name="cmd" value="Create"></td> </tr>
115 </table>
116 </form>
117
118 <a href="apps?abort=<% #id appl %>">Abort adding this member</a>
119
120 <% elseif $"abort" <> "" then
121 App.abortAdd (Web.stoi ($"abort"))
122 %><h3>Aborted</h3><%
123
124 end %>
125
126 <% if showNormal then %>
127 <h3>Pending applications</h3>
128
129 <% foreach appl in App.listApps App.PENDING do %>
130 <br><hr><br>
131 <table class="blanks">
132 <tr> <td>Received:</td> <td><% #applied appl %></td> </tr>
133 <tr> <td>Approved by:</td> <td><%
134 ref first = true;
135 ref found = false;
136 val votes = App.votes (#id appl);
137 foreach (id, name) in votes do
138 if first then
139 first := false
140 else
141 %>, <%
142 end
143 %><a href="user?id=<% id %>"><% name %></a><%
144 if id = you then
145 found := true
146 %> <a href="apps?unvote=<% #id appl %>">[Unvote]</a><%
147 end
148 end %> <% if (iff board then not found else false) then %><a href="apps?vote=<% #id appl %>">[Vote]</a><% end %></td> </tr>
149 <tr> <td>Username:</td> <td><% #name appl %></td> </tr>
150 <tr> <td>Real name:</td> <td><% Web.html (#rname appl) %></td> </tr>
151 <tr> <td>E-mail address:</td> <td><a href="mailto:<% #email appl %>"><% #email appl %></a></td> </tr>
152 <tr> <td>Forward e-mail?</td> <td><% if #forward appl then %>yes<% else %>no<% end %></td> </tr>
153 <tr> <td>Proposed uses:</td> <td><% Web.htmlNl (#uses appl) %></td> </tr>
154 <tr> <td>Other information:</td> <td><% Web.htmlNl (#other appl) %></td> </tr>
155 </table>
156
157 <% if board then %>
158 <% if length votes >= 2 then %><a href="apps?approve=<% #id appl %>">Approve this member.</a><br><% end %>
159 <a href="apps?deny=<% #id appl %>">Deny this application.</a>
160 <% end %>
161 <% end
162 end %>
163
164 <% @footer[] %>