summaryrefslogtreecommitdiffstats
path: root/modules-available/sysconfig/templates/custom-fileselect.html
blob: 3e7dd3d6e3e6fff82b31706dd48bb5d059d778ca (plain) (blame)
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
<form role="form" method="post" action="?do=SysConfig&amp;action=addmodule&amp;step={{step}}">
	<input type="hidden" name="modid" value="{{modid}}">
	<input type="hidden" name="token" value="{{token}}">
	<input type="hidden" name="edit" value="{{edit}}">
	<div class="input-group">
		<span class="input-group-addon">{{lang_moduleName}}</span>
		<input type="text" name="title" value="{{title}}" class="form-control" placeholder="Mein Konfigurationsmodul"
				 autofocus="autofocus">
	</div>
	<div class="pull-right">
		<button type="submit" class="btn btn-primary">{{lang_next}} &raquo;</button>
	</div>
	<div class="clearfix"></div>
	<hr>
	<p>{{lang_checkFileContent}}</p>
	{{#userGroupWarn}}
	<div class="alert alert-warning">
		{{lang_moduleOwnerWarn}}
	</div>
	<div class="checkbox">
		<input id="force-owner" type="checkbox" name="force-owner" value="1" checked>
		<label for="force-owner">{{lang_forceRootOwner}}</label>
	</div>
	<div class="slx-space"></div>
	{{/userGroupWarn}}
	<table class="table table-bordered table-condensed">
		{{#files}}
		<tr>
			{{#isdir}}
			<td class="fileEntry slx-bold" colspan="4">{{name}}</td>
			{{/isdir}}
			{{^isdir}}
			<td class="fileEntry">
				{{name}}
				{{#linkTarget}}
				-&gt;
				<span class="text-nowrap">{{linkTarget}}</span>
				{{/linkTarget}}
			</td>
			<td class="text-nowrap">{{user}}{{#user}}{{#group}}/{{/group}}{{/user}}{{group}}</td>
			<td class="text-nowrap">{{userId}}:{{groupId}}</td>
			<td class="text-nowrap">
				{{^linkTarget}}
				{{size}}
				{{/linkTarget}}
			</td>
			{{/isdir}}
		</tr>
		{{/files}}
	</table>
	<div class="pull-right">
		<button type="submit" class="btn btn-primary">{{lang_next}} &raquo;</button>
	</div>
</form>