summaryrefslogtreecommitdiffstats
path: root/application/views/file/upload_history_thumbnails.php
blob: 55ee901912f08cf25ca9c6dee3f056129b945450 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
<?php include 'nav_history.php'; ?>
<!-- Comment markers background: http://stackoverflow.com/a/14776780/953022 -->
<div class="upload_history_thumbnails"><!--
	<?php foreach($query as $key => $item): ?>
		--><a href="<?php echo site_url("/".$item["id"]); ?>" title="<?php echo htmlentities($item["filename"]); ?>" data-content="<?php echo htmlentities($item["tooltip"]); ?>" ><img class="thumb" src="<?php echo site_url("file/thumbnail/".$item["id"]); ?>"></a><!--
	<?php endforeach; ?>
--></div>

<div class="row-fluid">
	<div class="span12 alert alert-block alert-info">
		<h4 class="alert-heading">Notice!</h4>
		<p>
		Currently only jpeg, png and gif images are displayed here. If you are
		looking for something else, please switch to the
		<a href="<?php echo site_url("file/upload_history"); ?>">list view</a>
		which contains your complete history.
		</p>
	</div>
</div>