diff options
author | Jonathan Bauer | 2014-06-04 18:11:00 +0200 |
---|---|---|
committer | Jonathan Bauer | 2014-06-04 18:11:00 +0200 |
commit | 375b2cf8233c50c52f08750d0a38df86d6836927 (patch) | |
tree | 1e1d71987a1090d726ee34758c9e318553d32075 /templates/sysconfig | |
parent | Fixed some bugs from Sateserver v05 (diff) | |
download | slx-admin-375b2cf8233c50c52f08750d0a38df86d6836927.tar.gz slx-admin-375b2cf8233c50c52f08750d0a38df86d6836927.tar.xz slx-admin-375b2cf8233c50c52f08750d0a38df86d6836927.zip |
listing of module's content
Diffstat (limited to 'templates/sysconfig')
-rw-r--r-- | templates/sysconfig/custom-filelist.html | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/templates/sysconfig/custom-filelist.html b/templates/sysconfig/custom-filelist.html new file mode 100644 index 00000000..fc851ff8 --- /dev/null +++ b/templates/sysconfig/custom-filelist.html @@ -0,0 +1,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 «</button> + </div> +</form>
\ No newline at end of file |