aboutsummaryrefslogtreecommitdiffstats
path: root/apps/files_external/templates
diff options
context:
space:
mode:
authorVincent Petry <pvince81@owncloud.com>2014-06-06 13:16:47 +0200
committerVincent Petry <pvince81@owncloud.com>2014-06-06 15:06:26 +0200
commit01c2c3107a8370fc57dc6144dcdcc108a92347a9 (patch)
tree725548f12f0906942aaaf6b1154546c7936fee5f /apps/files_external/templates
parent933c05566e21c27e4f2d4b4e9c2d54e7b363d304 (diff)
downloadnextcloud-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.php25
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>