aboutsummaryrefslogtreecommitdiffstats
path: root/view/tpl/cloud_actionspanel.tpl
diff options
context:
space:
mode:
authorRedMatrix <info@friendica.com>2014-12-22 09:45:33 +1100
committerRedMatrix <info@friendica.com>2014-12-22 09:45:33 +1100
commitc732b72a0dde2c8b4d49e63114c9415f44a8a8d7 (patch)
treec6fba54256dcd17f9ed24c46766f1475da259641 /view/tpl/cloud_actionspanel.tpl
parentca56123a161e482d545b2e0e0c3d869eb8c4221f (diff)
parentbe1891c058ccff08d4cafa2bea061424efc0ef82 (diff)
downloadvolse-hubzilla-c732b72a0dde2c8b4d49e63114c9415f44a8a8d7.tar.gz
volse-hubzilla-c732b72a0dde2c8b4d49e63114c9415f44a8a8d7.tar.bz2
volse-hubzilla-c732b72a0dde2c8b4d49e63114c9415f44a8a8d7.zip
Merge pull request #757 from git-marijus/master
files: make mod/filestorage.php load via ajax and some design work. work...
Diffstat (limited to 'view/tpl/cloud_actionspanel.tpl')
-rw-r--r--view/tpl/cloud_actionspanel.tpl42
1 files changed, 16 insertions, 26 deletions
diff --git a/view/tpl/cloud_actionspanel.tpl b/view/tpl/cloud_actionspanel.tpl
index 00f243c1e..d88bc94c4 100644
--- a/view/tpl/cloud_actionspanel.tpl
+++ b/view/tpl/cloud_actionspanel.tpl
@@ -1,27 +1,17 @@
-<div class="generic-content-wrapper-styled">
-
-<table>
- <tr>
- <td><strong>{{$folder_header}}</strong>&nbsp;&nbsp;&nbsp;</td>
- <td>
- <form method="post" action="">
- <input type="hidden" name="sabreAction" value="mkcol">
- <input type="text" name="name">
- <input type="submit" value="{{$folder_submit}}">
- </form>
- </td>
- </tr>
- <tr>
- <td><strong>{{$upload_header}}</strong>&nbsp;&nbsp;&nbsp;</td>
- <td>
- <form method="post" action="" enctype="multipart/form-data">
- <input type="hidden" name="sabreAction" value="put">
- <input type="file" name="file" style="display: inline;">
- <input type="submit" value="{{$upload_submit}}">
- <!-- Name (optional): <input type="text" name="name"> we should rather provide a rename action in edit form-->
- </form>
- </td>
- </tr>
-</table>
-
+<div id="files-mkdir-tools" class="section-content-tools-wrapper form-group">
+ <label for="files-mkdir">{{$folder_header}}</label>
+ <form method="post" action="">
+ <input type="hidden" name="sabreAction" value="mkcol">
+ <input id="files-mkdir" type="text" name="name">
+ <input type="submit" value="{{$folder_submit}}">
+ </form>
+</div>
+<div id="files-upload-tools" class="section-content-tools-wrapper form-group">
+ <label for="files-upload">{{$upload_header}}</label>
+ <form method="post" action="" enctype="multipart/form-data">
+ <input type="hidden" name="sabreAction" value="put">
+ <input id="files-upload" type="file" name="file" style="display: inline;">
+ <input type="submit" value="{{$upload_submit}}">
+ <!-- Name (optional): <input type="text" name="name"> we should rather provide a rename action in edit form-->
+ </form>
</div>