diff options
author | Florian Pritz <bluewind@xinu.at> | 2013-05-23 17:44:45 +0200 |
---|---|---|
committer | Florian Pritz <bluewind@xinu.at> | 2013-05-24 00:11:26 +0200 |
commit | 2a6a1c63cb21015009fe4fd13f62cdac64e1fe36 (patch) | |
tree | a01b7cdf6e8819b5f41df4dae8b31c04d9904e38 /application/views/file/upload_history.php | |
parent | b7ff91d8e34e1d9f04ad0b153e94441efd312f78 (diff) |
upload_history: Allow column sorting (jquery.tablesorter)
Signed-off-by: Florian Pritz <bluewind@xinu.at>
Diffstat (limited to 'application/views/file/upload_history.php')
-rw-r--r-- | application/views/file/upload_history.php | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/application/views/file/upload_history.php b/application/views/file/upload_history.php index 9696f6770..d3699d565 100644 --- a/application/views/file/upload_history.php +++ b/application/views/file/upload_history.php @@ -1,5 +1,6 @@ +<?php register_js_include("/data/js/jquery.tablesorter.min.js"); ?> <?php echo form_open("file/do_delete") ?> - <table class="table table-striped"> + <table id="upload_history" class="table table-striped tablesorter"> <thead> <tr> <th><input type="checkbox" name="all-ids" id="history-all"></th> @@ -18,7 +19,7 @@ <td><a href="<?php echo site_url("/".$item["id"]) ?>/"><?php echo $item["id"] ?></a></td> <td><?php echo htmlspecialchars($item["filename"]); ?></td> <td><?php echo $item["mimetype"] ?></td> - <td class="nowrap"><?php echo $item["date"] ?></td> + <td class="nowrap"><?php echo date("r", $item["date"]); ?><span class="hidden">t=<?php echo $item["date"]; ?></span></td> <td><?php echo $item["hash"] ?></td> <td><?php echo $item["filesize"] ?></td> </tr> |