blob: f14a6fde9ce119c92cb4c15cc100291c93fb689e (
plain) (
tree)
|
|
<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}}">
<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}} »</button>
</div>
<div class="clearfix"></div>
<hr>
<p>{{lang_checkFileContent}}</p>
<table class="table table-bordered table-condensed">
{{#files}}
<tr>
{{#isdir}}
<td class="fileEntry slx-bold" 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>
|