summaryrefslogtreecommitdiff
path: root/help/app/views/tickets/show.html.haml
diff options
context:
space:
mode:
authorjessib <jessib@riseup.net>2012-11-06 16:00:59 -0800
committerjessib <jessib@riseup.net>2012-11-06 16:00:59 -0800
commit26d263ae1cf449d0f4e68b6d2b49b3c8e76c3461 (patch)
tree32b055ae4d2e52f82eaf4a6d1deec80df514a3d7 /help/app/views/tickets/show.html.haml
parent33988c40fbce6bba22f1a258148f63e4839c745d (diff)
Admin deletion of tickets, although need to figure out jquery interaction. And some minor tweaks.
Diffstat (limited to 'help/app/views/tickets/show.html.haml')
-rw-r--r--help/app/views/tickets/show.html.haml3
1 files changed, 3 insertions, 0 deletions
diff --git a/help/app/views/tickets/show.html.haml b/help/app/views/tickets/show.html.haml
index 132d50f..eaa3356 100644
--- a/help/app/views/tickets/show.html.haml
+++ b/help/app/views/tickets/show.html.haml
@@ -23,6 +23,9 @@
= f.select :is_open, [true, false]
= f.button :submit, @post_reply_str
= f.button :submit, @reply_close_str
+ = #link_to t(:destroy), ticket_path, :confirm => 'are you sure?', :method => :delete, :class => :btn if admin? # for link_to to work with delete, need to figure out jquery interaction correctly. see http://stackoverflow.com/questions/3774925/delete-link-sends-get-instead-of-delete-in-rails-3-view etc..
+ = button_to 'destroy', ticket_path, :confirm => 'are you sure?', :method => :delete if admin? #TODO---confirmation not working
+ = # button_to("test destroy", {}, {:onclick => "return confirm('Are you sure?')", :method => :delete, :remote => true}) #this works but is ugly
= # TODO want to have button to close
= # TODO if admin, have button to delete
= link_to t(:cancel), tickets_path, :class => :btn