43 lines
1.2 KiB
PHP
43 lines
1.2 KiB
PHP
<?php
|
|
/**
|
|
* SPDX-FileCopyrightText: 2017 F7cloud GmbH and F7cloud contributors
|
|
* SPDX-License-Identifier: AGPL-3.0-or-later
|
|
*/
|
|
?>
|
|
<div class="files-controls">
|
|
</div>
|
|
|
|
<div class="emptyfilelist emptycontent" class="hidden">
|
|
<div class="icon-folder"></div>
|
|
<h2><?php p($l->t('No files in here')); ?></h2>
|
|
<p class="uploadmessage hidden"></p>
|
|
</div>
|
|
|
|
<div class="nofilterresults emptycontent hidden">
|
|
<div class="icon-search"></div>
|
|
<h2><?php p($l->t('No entries found in this folder')); ?></h2>
|
|
<p></p>
|
|
</div>
|
|
|
|
<table class="files-filestable" data-preview-x="32" data-preview-y="32">
|
|
<thead>
|
|
<tr>
|
|
<th class="hidden column-name">
|
|
<div class="column-name-container">
|
|
<a class="name sort columntitle" data-sort="name"><span><?php p($l->t('Name')); ?></span><span class="sort-indicator"></span></a>
|
|
</div>
|
|
</th>
|
|
<th class="hidden column-size">
|
|
<a class="size sort columntitle" data-sort="size"><span><?php p($l->t('Size')); ?></span><span class="sort-indicator"></span></a>
|
|
</th>
|
|
<th class="hidden column-mtime">
|
|
<a class="columntitle" data-sort="mtime"><span><?php p($l->t('Modified')); ?></span><span class="sort-indicator"></span></a>
|
|
</th>
|
|
</tr>
|
|
</thead>
|
|
<tbody class="files-fileList">
|
|
</tbody>
|
|
<tfoot>
|
|
</tfoot>
|
|
</table>
|