26 lines
823 B
HTML
26 lines
823 B
HTML
<div id="{dialog_name}" title="{title}">
|
|
<span class="dirtree breadcrumb"></span>
|
|
<input type="checkbox" class="hidden-visually" id="picker-showgridview" checked="checked" />
|
|
<label id="picker-view-toggle" for="picker-showgridview" class="button icon-toggle-filelist"></label>
|
|
<div class="filelist-container">
|
|
<div class="emptycontent">
|
|
<div class="icon-folder"></div>
|
|
<h2>{emptytext}</h2>
|
|
</div>
|
|
<table id="filestable" class="filelist list-container view-grid">
|
|
<tbody>
|
|
<tr data-entryname="{filename}" data-type="{type}">
|
|
<td class="filename"
|
|
style="background-image:url({icon})">{filename}
|
|
</td>
|
|
<td class="filesize"
|
|
style="color:rgb({sizeColor}, {sizeColor}, {sizeColor})">
|
|
{size}
|
|
</td>
|
|
<td class="date">{date}</td>
|
|
</tr>
|
|
</tbody>
|
|
</table>
|
|
</div>
|
|
</div>
|