diff options
author | Azul <azul@leap.se> | 2012-10-29 19:19:35 +0100 |
---|---|---|
committer | Azul <azul@leap.se> | 2012-10-29 19:19:35 +0100 |
commit | 428aea3c577c44a3bb13cced23c5c0cafc5b4d93 (patch) | |
tree | e36349452e599c11b67e1912df2e68db5140c504 /help/app/views/tickets/new.html.haml | |
parent | 3ba2e664a26e96a93c8640b57241af6386db361e (diff) | |
parent | 56273c13f54a872d02db286c90a8d5103cf7a663 (diff) |
Merge branch 'help_develop' into develop
Diffstat (limited to 'help/app/views/tickets/new.html.haml')
-rw-r--r-- | help/app/views/tickets/new.html.haml | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/help/app/views/tickets/new.html.haml b/help/app/views/tickets/new.html.haml new file mode 100644 index 0000000..d784720 --- /dev/null +++ b/help/app/views/tickets/new.html.haml @@ -0,0 +1,16 @@ +%h2=t :new_ticket += simple_form_for (@ticket, :html => {:novalidate => true}) do |f| #turn off html5 validations to test + = #@ticket.errors.messages + = f.input :title + = #f.input :email #if there is no current_user + = f.input :email if !User.current_test #hmm--might authenticated users want to submit an alternate email? + + = f.simple_fields_for :comments do |c| + = c.input :body, :label => 'Comment', :as => :text + + = #render :partial => 'new_comment' #what we were using + = # regarding_user if not logged in + = # email if not logged in + = #f.button :submit, :value => t(:submit), :class => 'btn-primary' + = f.button :submit + = link_to t(:cancel), tickets_path, :class => :btn |