summaryrefslogtreecommitdiffstats
path: root/application/views/file/upload_history.php
diff options
context:
space:
mode:
Diffstat (limited to 'application/views/file/upload_history.php')
-rw-r--r--application/views/file/upload_history.php46
1 files changed, 24 insertions, 22 deletions
diff --git a/application/views/file/upload_history.php b/application/views/file/upload_history.php
index 344afc28a..634ad5935 100644
--- a/application/views/file/upload_history.php
+++ b/application/views/file/upload_history.php
@@ -1,30 +1,32 @@
<?php register_js_include("/data/js/jquery.tablesorter.min.js"); ?>
<?php include 'nav_history.php'; ?>
<?php echo form_open("file/do_delete") ?>
- <table id="upload_history" class="table table-striped tablesorter">
- <thead>
- <tr>
- <th><input type="checkbox" name="all-ids" id="history-all"></th>
- <th>ID</th>
- <th>Filename</th>
- <th>Mimetype
- <th>Date</th>
- <th>Size</th>
- </tr>
- </thead>
- <tbody>
- <?php foreach($query as $key => $item): ?>
+ <div class="table-responsive">
+ <table id="upload_history" class="table table-striped tablesorter">
+ <thead>
<tr>
- <td><input type="checkbox" name="ids[<?php echo $item["id"] ?>]" value="<?php echo $item["id"] ?>" class="delete-history"></td>
- <td><a href="<?php echo site_url("/".$item["id"]) ?>/"><?php echo $item["id"] ?></a></td>
- <td class="wrap"><?php echo htmlspecialchars($item["filename"]); ?></td>
- <td><?php echo $item["mimetype"] ?></td>
- <td class="nowrap"><?php echo date("r", $item["date"]); ?><span class="hidden">t=<?php echo $item["date"]; ?></span></td>
- <td><?php echo $item["filesize"] ?></td>
+ <th><input type="checkbox" name="all-ids" id="history-all"></th>
+ <th>ID</th>
+ <th>Filename</th>
+ <th>Mimetype
+ <th>Date</th>
+ <th>Size</th>
</tr>
- <?php endforeach; ?>
- </tbody>
- </table>
+ </thead>
+ <tbody>
+ <?php foreach($query as $key => $item): ?>
+ <tr>
+ <td><input type="checkbox" name="ids[<?php echo $item["id"] ?>]" value="<?php echo $item["id"] ?>" class="delete-history"></td>
+ <td><a href="<?php echo site_url("/".$item["id"]) ?>/"><?php echo $item["id"] ?></a></td>
+ <td class="wrap"><?php echo htmlspecialchars($item["filename"]); ?></td>
+ <td><?php echo $item["mimetype"] ?></td>
+ <td class="nowrap"><?php echo date("r", $item["date"]); ?><span class="hidden">t=<?php echo $item["date"]; ?></span></td>
+ <td><?php echo $item["filesize"] ?></td>
+ </tr>
+ <?php endforeach; ?>
+ </tbody>
+ </table>
+ </div>
<input class="btn btn-danger" type="submit" value="Delete checked" name="process">
</form>