summaryrefslogtreecommitdiffstats
path: root/admin/templates/plugins.tmpl
blob: ca32a877256532fc42a6bf24eb6497399aae5bef (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
<h1>Administration</h1>
<h2>Plugins</h2>

<table>
	<thead>
		<tr>
			<th>Name</th>
			<th>Description</th>
			<th>Version</th>
			<th>Author</th>
			<th></th>
		</tr>
	</thead>
	<tbody>
		[%foreach $plugins as $plugin%]
			<td>[%$plugin.info.id%]</td>
			<td>[%$plugin.info.version%]</td>
			<td>[%$plugin.info.name%]</td>
			<td>[%$plugin.info.author%]</td>
			<td>enable</td>
		[%/foreach%]
	</tbody>
</table>