diff options
author | Vincent Petry <pvince81@owncloud.com> | 2014-06-06 13:16:47 +0200 |
---|---|---|
committer | Vincent Petry <pvince81@owncloud.com> | 2014-06-06 15:06:26 +0200 |
commit | 01c2c3107a8370fc57dc6144dcdcc108a92347a9 (patch) | |
tree | 725548f12f0906942aaaf6b1154546c7936fee5f /apps/files_external/templates | |
parent | 933c05566e21c27e4f2d4b4e9c2d54e7b363d304 (diff) | |
download | nextcloud-server-01c2c3107a8370fc57dc6144dcdcc108a92347a9.tar.gz nextcloud-server-01c2c3107a8370fc57dc6144dcdcc108a92347a9.zip |
Added external storage list in files app
Diffstat (limited to 'apps/files_external/templates')
-rw-r--r-- | apps/files_external/templates/list.php | 25 |
1 files changed, 25 insertions, 0 deletions
diff --git a/apps/files_external/templates/list.php b/apps/files_external/templates/list.php new file mode 100644 index 00000000000..225616e8cf2 --- /dev/null +++ b/apps/files_external/templates/list.php @@ -0,0 +1,25 @@ +<?php /** @var $l OC_L10N */ ?> +<div id="controls"> + <div id="file_action_panel"></div> +</div> +<div id='notification'></div> + +<div id="emptycontent" class="hidden"><?php p($l->t( 'You don\'t have any external storages' )); ?></div> + +<input type="hidden" name="dir" value="" id="dir"> + +<table id="filestable"> + <thead> + <tr> + <th id='headerName' class="hidden column-name"> + <div id="headerName-container"> + <a class="name sort columntitle" data-sort="name"><span><?php p($l->t( 'Name' )); ?></span><span class="sort-indicator"></span></a> + </div> + </th> + </tr> + </thead> + <tbody id="fileList"> + </tbody> + <tfoot> + </tfoot> +</table> |