blob: 0c2d88e93a37d29e6d6a034e5c17a79fe48e4a38 (
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
|
<form role="form" method="post" action="?do=SysConfig&action=addmodule&step={{step}}">
<input type="hidden" name="modid" value="{{modid}}">
<input type="hidden" name="token" value="{{token}}">
<div class="input-group">
<span class="input-group-addon">{{lang_moduleName}}</span>
<input type="text" name="title" class="form-control" placeholder="Mein Konfigurationsmodul" autofocus="autofocus">
</div>
<div class="pull-right">
<button type="submit" class="btn btn-primary">{{lang_next}} »</button>
</div>
<div class="clearfix"></div>
<hr>
<p>{{lang_checkFileContent}}</p>
<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-right">
<button type="submit" class="btn btn-primary">{{lang_next}} »</button>
</div>
</form>
|