summaryrefslogtreecommitdiffstats
path: root/application
diff options
context:
space:
mode:
authorFlorian Pritz <bluewind@xinu.at>2014-08-13 15:03:30 +0200
committerFlorian Pritz <bluewind@xinu.at>2014-08-29 17:43:19 +0200
commit4312a6ddf160a284e7bc5b3e1f27bd7a38f08816 (patch)
tree91602099de0d31ff8153da4ed33baca912c7199c /application
parent3c6b4d9311fb622a5ccf5276a5f551aa9471f803 (diff)
Simplify sorting of history table
Signed-off-by: Florian Pritz <bluewind@xinu.at>
Diffstat (limited to 'application')
-rw-r--r--application/views/file/upload_history.php7
1 files changed, 4 insertions, 3 deletions
diff --git a/application/views/file/upload_history.php b/application/views/file/upload_history.php
index 634ad5935..5015e9bf6 100644
--- a/application/views/file/upload_history.php
+++ b/application/views/file/upload_history.php
@@ -1,11 +1,12 @@
<?php register_js_include("/data/js/jquery.tablesorter.min.js"); ?>
+<?php register_js_include("/data/js/jquery.metadata.js"); ?>
<?php include 'nav_history.php'; ?>
<?php echo form_open("file/do_delete") ?>
<div class="table-responsive">
- <table id="upload_history" class="table table-striped tablesorter">
+ <table id="upload_history" class="table table-striped tablesorter {sortlist: [[4,1]]}">
<thead>
<tr>
- <th><input type="checkbox" name="all-ids" id="history-all"></th>
+ <th class="{sorter: false}"><input type="checkbox" name="all-ids" id="history-all"></th>
<th>ID</th>
<th>Filename</th>
<th>Mimetype
@@ -20,7 +21,7 @@
<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 class="nowrap" data-sort-value="<?=$item["date"]; ?>"><?php echo date("r", $item["date"]); ?></td>
<td><?php echo $item["filesize"] ?></td>
</tr>
<?php endforeach; ?>