1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
|
%h2= @ticket.title
%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
- if @ticket.email
email:
= @ticket.email
%li
- if User.find(@ticket.created_by)
Created by
= User.find(@ticket.created_by).login
- else
Unauthenticated ticket creator
%li
= "status:"
- if @ticket.is_open
= 'open'
= button_to 'close', {:post => {:is_open => false}}, :method => :put
- else
= 'closed'
= 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
= render :partial => 'new_comment', :locals => {:f => f}
= 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?
= link_to t(:cancel), tickets_path, :class => :btn
|