summaryrefslogtreecommitdiffstats
path: root/templates/sysconfig/custom-filelist.html
blob: fc851ff8dbe6a54f6a9f5a0e3d0a58bb783fac9b (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
<form role="form" method="post" action="?do=SysConfig">
	<input type="hidden" name="modid" value="{{modid}}">
	<input type="hidden" name="token" value="{{token}}">

	<table class="table table-bordered table-condensed">
	{{#files}}
		<tr>
			{{#isdir}}
				<td class="fileEntry isdir" colspan="2">{{name}}</td>
			{{/isdir}}
			{{^isdir}}
				<td class="fileEntry">{{name}}</td>
				<td>{{size}}</td>
			{{/isdir}}
		</tr>
	{{/files}}
	</table>
	<div class="pull-left">
		<button type="submit" class="btn btn-primary" action="?do=SysConfig">Zurück &laquo;</button>
	</div>
</form>