I have a form I\'m trying to set up ... Users can have many posts, and each post can have many people watching it.
The Watch model is set up polymorphically as \'watcha
If you need the state of the checkbox to reflect the value of :some_input
<%= form.input :some_input, :as => :boolean, :input_html => { :checked => :some_input? } %>
In your model..
def some_input? self.some_input ? true : false end