Displaying 1 result from an estimated 1 matches for "staff_url".
Did you mean:
staff_u
2010 Apr 06
1
captcha in a belongs_to
Hi
I am using simple_captcha. I have two models User and Staff.
Relation ship are
User has_one staff
staff belongs_to user
Now in the staff edit I have to include a captcha. I did like
<% form_for @user, :url => staff_url(@staff), :html => {:method => :put
} do |f|%>
<p>
<%= f.text_field :first_name,:maxlength => 50 %>
</p>
<p>
<%= show_simple_captcha :image_style => ''random'',:distortion =>
''medium'' %>
<...