I'm new to Rails and am not sure how to specify where the form_tag submits to?
<% form_tag do %>
<%= submit_tag "checkout_submit" %>
<% end %>
In the case of the example above, does this form submit itself to the "checkout_submit" action from the same controller that rendered this view?