diff options
author | Florian Pritz <bluewind@xinu.at> | 2016-09-06 14:11:39 +0200 |
---|---|---|
committer | Florian Pritz <bluewind@xinu.at> | 2016-11-01 17:26:31 +0100 |
commit | c9fa3ed37fd1371ef24f6c3330995025295d7baf (patch) | |
tree | 1828f5961dcf4cce5959a2af076e3e0401fa074a /application/views/file/upload_history.php | |
parent | c553bb64715f40d1755bb84c277442df88e3a925 (diff) |
Allow creation of multipastes from upload history
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 | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/application/views/file/upload_history.php b/application/views/file/upload_history.php index 253c0aa9e..54324d5b3 100644 --- a/application/views/file/upload_history.php +++ b/application/views/file/upload_history.php @@ -1,7 +1,10 @@ -<?php echo form_open("file/do_delete") ?> +<?php echo form_open("file/handle_history_submit") ?> <div class="nav-history"> <div class="container"> - <input class="btn btn-danger pull-right" type="submit" value="Delete checked" name="process"> + <div class="pull-right"> + <button class="btn btn-danger" name="process" value="delete">Delete checked</button> + <button class="btn btn-primary" name="process" value="multipaste">Add checked to multipaste queue</button> + </div> <?php include 'nav_history.php'; ?> </div> </div> @@ -32,6 +35,7 @@ </table> </div> <input class="btn btn-danger" type="submit" value="Delete checked" name="process"> + <button class="add_multipaste btn btn-primary">Add checked to multipaste queue</button> </form> <p>Total sum of your distinct uploads: <?php echo $total_size; ?>.</p> |