38 lines
803 B
HTML
38 lines
803 B
HTML
|
<html>
|
||
|
<head>
|
||
|
<style>
|
||
|
table {
|
||
|
font-family: arial, sans-serif;
|
||
|
border-collapse: collapse;
|
||
|
width: 100%;
|
||
|
}
|
||
|
td, th {
|
||
|
border: 1px solid #dddddd;
|
||
|
text-align: left;
|
||
|
padding: 8px;
|
||
|
}
|
||
|
tr:nth-child(even) {
|
||
|
background-color: #dddddd;
|
||
|
}
|
||
|
</style>
|
||
|
</head>
|
||
|
<body>
|
||
|
<table>
|
||
|
<thead>
|
||
|
<tr>
|
||
|
<th>File/Attachment</th>
|
||
|
<th>File path</th>
|
||
|
<th>File name</th>
|
||
|
<th>Thumb 1</th>
|
||
|
<th>Thumb 2</th>
|
||
|
<th>Size</th>
|
||
|
<th>Creation Time</th>
|
||
|
</tr>
|
||
|
</thead>
|
||
|
<tbody>
|
||
|
{{table_rows}}
|
||
|
</tbody>
|
||
|
</table>
|
||
|
</body>
|
||
|
</html>
|