diff options
author | Jonathan Bauer | 2014-06-04 18:37:35 +0200 |
---|---|---|
committer | Jonathan Bauer | 2014-06-04 18:37:35 +0200 |
commit | 52a50e0027245cc580147fe99e2fd90697b87c84 (patch) | |
tree | 85b1601e5607de0cea397d45cc52443c33f04551 /templates/sysconfig | |
parent | Merge branch 'master' of git.openslx.org:openslx-ng/slx-admin (diff) | |
download | slx-admin-52a50e0027245cc580147fe99e2fd90697b87c84.tar.gz slx-admin-52a50e0027245cc580147fe99e2fd90697b87c84.tar.xz slx-admin-52a50e0027245cc580147fe99e2fd90697b87c84.zip |
remove broken error handling + href 'back' button
Diffstat (limited to 'templates/sysconfig')
-rw-r--r-- | templates/sysconfig/custom-filelist.html | 35 |
1 files changed, 15 insertions, 20 deletions
diff --git a/templates/sysconfig/custom-filelist.html b/templates/sysconfig/custom-filelist.html index fc851ff8..3d2a079b 100644 --- a/templates/sysconfig/custom-filelist.html +++ b/templates/sysconfig/custom-filelist.html @@ -1,21 +1,16 @@ -<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> +<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 +</table> +<a class="btn btn-primary btn-sm" href="?do=SysConfig">Zurück «</a> |