aboutsummaryrefslogtreecommitdiffstats
path: root/core/templates/filepicker.html
blob: 53daf4111b4698f8027dcc9b5b93f0c542c58dd8 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
<div id="{dialog_name}" title="{title}">
	<span class="dirtree breadcrumb"></span>
	<input type="checkbox" class="hidden" id="picker-showgridview" checked="checked" />
	<label id="picker-view-toggle" for="picker-showgridview" class="button icon-toggle-filelist" tabindex="0"></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>