summaryrefslogtreecommitdiff
path: root/help/app/views/tickets/show.html.haml
diff options
context:
space:
mode:
authorjessib <jessib@leap.se>2012-12-12 13:15:07 -0800
committerjessib <jessib@leap.se>2012-12-12 13:15:07 -0800
commit49d0ffe5f689ecb651b65beb4050b3f38cbb226e (patch)
tree3e574319e2d1ba44f121fad6dd059184cdaf2222 /help/app/views/tickets/show.html.haml
parent524bb47fa5782ca1e0aaf16a4a0836defadfbe48 (diff)
Refactoring of ticket displaying/editing.
Diffstat (limited to 'help/app/views/tickets/show.html.haml')
-rw-r--r--help/app/views/tickets/show.html.haml18
1 files changed, 5 insertions, 13 deletions
diff --git a/help/app/views/tickets/show.html.haml b/help/app/views/tickets/show.html.haml
index f09f525..b9f2ce6 100644
--- a/help/app/views/tickets/show.html.haml
+++ b/help/app/views/tickets/show.html.haml
@@ -1,6 +1,6 @@
%h2= @ticket.title
-%a#title.editable.editable-click{"data-name" => "title", "data-original-title" => "Enter username", "data-resource" => "post", "data-type" => "text", "data-url" => ticket_path(@ticket.id), "data-pk" => @ticket.id, :href => "#"}
+%a#title.editable.editable-click{"data-name" => "title", "data-resource" => "post", "data-type" => "text", "data-url" => ticket_path(@ticket.id), "data-pk" => @ticket.id, :href => "#"}
= @ticket.title
%p
@@ -17,26 +17,18 @@
= "status:"
- if @ticket.is_open
= 'open'
- = #link_to 'close', ticket_path, :method => :put
- = #button_to 'close', ticket_path, :method => :put
- = button_to 'close', {:change_status => :close}, :method => :put
+ = button_to 'close', {:post => {:is_open => false}}, :method => :put
- else
= 'closed'
- = button_to 'open', {:change_status => :open}, :method => :put
+ = button_to 'open', {:post => {:is_open => true}}, :method => :put
= render(:partial => "comment", :collection => @ticket.comments)
= #render @ticket.comments should work if view is in /app/views/comments/_comment
= simple_form_for(@ticket, :html => {:novalidate => true}) do |f| #turn off html5 validations to test
- = f.simple_fields_for :comments, TicketComment.new do |c|
- = c.input :body, :label => 'Comment', :as => :text
- = #render :partial => 'new_comment'
- = #f.label :is_open
- = #f.select :is_open, [true, false] #remove
+ = render :partial => 'new_comment', :locals => {:f => f, :comment_object => TicketComment.new}
= f.button :submit, @post_reply_str
- if @ticket.is_open
= 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 want to have button to close
-= # TODO if admin, have button to delete
+= button_to 'destroy', ticket_path, :confirm => 'are you sure?', :method => :delete if admin?
= link_to t(:cancel), tickets_path, :class => :btn