diff options
Diffstat (limited to 'application/views/file/upload_history.php')
-rw-r--r-- | application/views/file/upload_history.php | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/application/views/file/upload_history.php b/application/views/file/upload_history.php index 5d61c7331..910af1535 100644 --- a/application/views/file/upload_history.php +++ b/application/views/file/upload_history.php @@ -7,6 +7,7 @@ <table class="results"> <tr> + <th></th> <th>ID</th> <th>Filename</th> <th>Mimetype @@ -16,6 +17,7 @@ <?php foreach($query as $key => $item): ?> <tr class="<?php echo even_odd(); ?>"> + <td><a href="<?php echo site_url("file/delete/".$item["id"]); ?>"><img src="<?php echo base_url(); ?>data/img/fuge-icons/cross.png" /></a></td> <td><a href="<?php echo site_url("/".$item["id"]); ?>/"><?php echo $item["id"]; ?></a></td> <td><?php echo $item["filename"]; ?></td> <td><?php echo $item["mimetype"]; ?></td> |