summaryrefslogtreecommitdiffstats
path: root/core/templates/filepicker.html
blob: b665ca26893f6ded2ee88ec3f4b7a01e55562356 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
<div id="{dialog_name}" title="{title}">
	<span class="dirtree breadcrumb"></span>
	<div class="filelist-container">
		<table id="filestable" class="filelist">
			<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>