Support retiring balances of departed members
[hcoop/portal.git] / link.mlt
CommitLineData
88a858ea
AC
1<% @header[("title", ["Hosted sites"])];
2
3val admin = Group.inGroupName "links";
4val you = Init.getUserId ();
5
6ref showNormal = true;
7
8if $"cmd" = "add" then
9 val id = Link.addLink (you, $"title", $"url", $"descr") %>
10 <h3><b>Link added</b></h3>
11
12<% elseif $"mod" <> "" then
13 val id = Web.stoi ($"mod");
14 val link = Link.lookupLink id;
15 if (iff admin then false else you <> #usr link) then
16 %><h3><b>You can't modify somebody else's link.</b></h3><%
17 else
18 showNormal := false %>
19
20<h3><b>Modify link</b></h3>
21
a4ccdb5e 22<form action="link" method="post">
88a858ea
AC
23<input type="hidden" name="save" value="<% id %>">
24<table>
25<tr> <td align="right"><b>Title</b>:</td> <td><input name="title" value="<% Web.html (#title link) %>"></td> </tr>
26<tr> <td align="right"><b>URL</b>:</td> <td><input name="url" value="<% Web.html (#url link) %>"></td> </tr>
27<tr> <td align="right"><b>Description</b>:</td> <td><input name="descr" value="<% Web.html (#descr link) %>"></td> </tr>
28<tr> <td><input type="submit" value="Save"></td> </t>
29</table>
30</form>
31<% end
32
33elseif $"save" <> "" then
34 val id = Web.stoi ($"save");
35 val link = Link.lookupLink id;
36 if (iff admin then false else you <> #usr link) then
37 %><h3><b>You can't modify somebody else's link.</b></h3><%
38 else
39 Link.modLink {link with title = $"title", url = $"url", descr = $"descr"}
40 %><h3><b>Link modified</b></h3><%
41 end
42
43elseif $"del" <> "" then
44 val id = Web.stoi ($"del");
45 val link = Link.lookupLink id;
46 if (iff admin then false else you <> #usr link) then
47 %><h3><b>You can't delete somebody else's link.</b></h3><%
48 else
49 showNormal := false %>
50 <h3><b>Are you sure you want to delete link to "<% Web.html (#title link) %>"?</b></h3>
51 <a href="link?del2=<% id %>">Yes, delete "<% Web.html (#title link) %>"!</a><%
52 end
53
54elseif $"del2" <> "" then
55 val id = Web.stoi ($"del2");
56 val link = Link.lookupLink id;
57 if (iff admin then false else you <> #usr link) then
58 %><h3><b>You can't delete somebody else's link.</b></h3><%
59 else
60 Link.deleteLink id;
61 %><h3><b>Link "<% Web.html (#title link) %>" deleted</b></h3><%
62 end
63end;
64
65if showNormal then %>
66
67<table>
68<% foreach (name, link) in Link.listLinks () do %>
69 <tr> <td><a href="<% Web.html (#url link) %>"><% Web.html (#title link) %></a></td>
70 <td><% Web.html (#descr link) %></td>
71 <td>(<a href="user?id=<% #usr link %>"><% name %></a>)</td>
72<% if (iff admin then true else you = #usr link) then %>
73 <td><a href="link?mod=<% #id link %>">[Modify]</a> <a href="link?del=<% #id link %>">[Delete]</a></td>
74<% end %>
75 </tr>
76<% end %>
77</table>
78
79<h3><b>Add a link to a site you host with Hcoop</b></h3>
80
a4ccdb5e 81<form action="link" method="post">
88a858ea
AC
82<input type="hidden" name="cmd" value="add">
83<table>
84<tr> <td align="right"><b>Title</b>:</td> <td><input name="title"></td> </tr>
85<tr> <td align="right"><b>URL</b>:</td> <td><input name="url" value="http://"></td> </tr>
86<tr> <td align="right"><b>Description</b>:</td> <td><input name="descr"></td> </tr>
87<tr> <td><input type="submit" value="Add"></td> </t>
88</table>
89</form>
90
91<% end %>
92
93<% @footer[] %>