summaryrefslogtreecommitdiff
path: root/help/app/views/tickets/show.html.haml
blob: 1e1fab38025222b390ccc86344af35238633cf17 (plain)
1
2
3
4
5
6
7
8
9
10
11
%h2= @ticket.title
is open?
= @ticket.is_open
code:
= @ticket.code
= render(:partial => "comment", :collection => @ticket.comments)

= simple_form_for (@ticket, :html => {:novalidate => true}) do |f| #turn off html5 validations to test
  = render :partial => 'new_comment'
  = f.button :submit
  = link_to t(:cancel), root_url, :class => :btn