summaryrefslogtreecommitdiffstats
path: root/application/views/file/multipaste_info.php
blob: 5baf732a2339a76cb23087b89e5a300c58e564dd (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
26
<div class="center simple-container">
	<div class="table-responive">
		<table class="table" style="margin: auto">
			<tr>
				<td class="title">ID</td>
				<td class="text"><a href="<?=site_url($id); ?>/"><?=$id; ?></a></td>
			</tr>
			<tr>
				<td class="title">Number of files</td>
				<td class="text"><?=$file_count; ?></td>
			</tr>
			<tr>
				<td class="title">Date of upload</td>
				<td class="text"><?=date("r", $upload_date); ?></td>
			</tr>
			<tr>
				<td class="title">Date of removal</td>
				<td class="text"><?=$timeout_string; ?></td>
			</tr>
			<tr>
				<td class="title">Total size (including duplicates)</td>
				<td class="text"><?=format_bytes($size); ?></td>
			</tr>
		</table>
	</div>
</div>