diff options
author | jessib <jessib@leap.se> | 2013-01-14 11:19:55 -0800 |
---|---|---|
committer | jessib <jessib@leap.se> | 2013-01-14 11:19:55 -0800 |
commit | 2485527650c4832d764d318e91c10bafde8b8ae5 (patch) | |
tree | b624178d9d6e3279f38340e86d2097a338b434d6 /help/app/views/tickets/new.html.haml | |
parent | ce8b283255e2be4c0f42b3223c3cf4ad33364933 (diff) |
Some fixes to the how we keep track of information about users associated with a ticket.
Diffstat (limited to 'help/app/views/tickets/new.html.haml')
-rw-r--r-- | help/app/views/tickets/new.html.haml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/help/app/views/tickets/new.html.haml b/help/app/views/tickets/new.html.haml index 79a9af7..af8baad 100644 --- a/help/app/views/tickets/new.html.haml +++ b/help/app/views/tickets/new.html.haml @@ -3,7 +3,7 @@ = simple_form_for(@ticket, :html => {:novalidate => true}) do |f| #turn off html5 validations to test = f.input :title = f.input :email if !current_user #hmm--might authenticated users want to submit an alternate email? - = f.input :regarding_user if !current_user + = f.input :regarding_user = render :partial => 'new_comment', :locals => {:f => f} .form-actions = f.button :submit, :class => 'btn-primary' |