diff options
author | jessib <jessib@riseup.net> | 2012-10-10 15:52:08 -0700 |
---|---|---|
committer | jessib <jessib@riseup.net> | 2012-10-10 15:52:08 -0700 |
commit | cf9ed38ab1840092352efdbb71bfeb5bc3b9f9d5 (patch) | |
tree | 10bfad997861e6a3c49fca3f5c2713d491eff7ee /help/app/views | |
parent | 0bdfbdb57ab7c29d0d87dc1a44b17eb32f98439b (diff) |
Some tweaks to get server-side validation working when adding the embedded ticket comment to a new ticket.
Diffstat (limited to 'help/app/views')
-rw-r--r-- | help/app/views/tickets/new.html.haml | 9 |
1 files changed, 2 insertions, 7 deletions
diff --git a/help/app/views/tickets/new.html.haml b/help/app/views/tickets/new.html.haml index d0e6939..0a6b25b 100644 --- a/help/app/views/tickets/new.html.haml +++ b/help/app/views/tickets/new.html.haml @@ -1,18 +1,13 @@ %h2=t :new_ticket = simple_form_for (@ticket, :html => {:novalidate => true}) do |f| #turn off html5 validations to test - = @ticket.errors.messages + = #@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 :comment do |c| - = #c.input :body, :label => 'Comment', :as => :text - = #f.input :comments, :label => 'Comment', :as => :text - = f.fields_for :comment do |c| + = f.simple_fields_for :comments do |c| = c.input :body, :label => 'Comment', :as => :text - - = #f.input :comment = #render :partial => 'new_comment' #what we were using = # regarding_user if not logged in = # email if not logged in |