Parent: [b7002d] (diff)

Download this file

admin.html    93 lines (89 with data), 3.6 kB

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml"
xmlns:py="http://genshi.edgewall.org/"
xmlns:xi="http://www.w3.org/2001/XInclude">
<xi:include href="master.html" />
<xi:include href="${app.templates}/lib.html" />
<head>
<meta content="text/html; charset=UTF-8" http-equiv="content-type" py:replace="''"/>
<title>Admin for $c.project._id $app.config.options.mount_point</title>
</head>
<body>
<h1>Forum Admin for ${c.project.name}: $app.config.options.mount_point </h1>
<div id="app-config" py:if="len(app.config_options) > 1">
<h3>Config Options</h3>
<form method="post" action="configure">
<div py:for="o in app.config_options" py:if="o.name != 'mount_point'">
<label for="$o.name">$o.name</label><br/>
<input name="$o.name" value="${app.config.options.get(o.name, o.default)}"/>
</div>
<input type="submit" value="Update config"/>
<input py:if="app.installable" type="submit" name="delete" value="Delete Plugin"/>
</form>
</div>
<div id="forum" class="title-pane">
<h3 class="title">Forums</h3>
<div class="content">
<form method="POST" action="update_forums">
<input py:for="i, forum in enumerate(app.forums)"
name="forum-${i}.id"
type="hidden"
value="$forum._id"/>
<table id="forums">
<thead>
<tr>
<th/>
<th>Forum</th><th>Topics</th><th>Posts</th><th>Last Post</th>
<th/>
</tr>
</thead>
<tbody>
<py:for each="i, forum in enumerate(app.forums)">
${forum_admin_row(i, forum)}
</py:for>
</tbody>
</table>
<div class="title-pane closed">
<div class="title">New Forum</div>
<div class="content">
${text_field('new_forum.name', 'Name')}
${text_field('new_forum.shortname', 'Short Name')}
${select_field('new_forum.parent', 'Parent Forum',
[('None', '')] + [ (f.name, f._id) for f in app.forums ])}
${text_area('new_forum.description', 'Description', style="height:50px;")}
${submit_button('Create Forum', 'new_forum.create')}
</div>
</div>
</form>
</div>
</div>
<div id="app-acl" class="title-pane closed">
<h3 class="title">ACL Config</h3>
<div class="content">
<div py:for="p in app.permissions" >
<h4>$p</h4>
<ul>
<li py:for="role in h.make_roles(app.config.acl[p])">
${role.display()}
<form method="POST" action="del_perm" style="display:inline">
<input type="hidden" name="permission" value="$p"/>
<input type="hidden" name="role" value="${role._id}"/>
<input type="submit" value="Remove"/>
</form>
</li>
</ul>
<form method="POST" action="add_perm">
<input type="hidden" name="permission" value="$p"/>
<select name="role">
<option py:for="role in c.project.roles"
value="$role._id"
>${role.display()}</option>
</select>
<input type="submit" value="Add role"/>
</form>
</div>
</div>
</div>
</body>
</html>