I have this form_for tag:
= form_for @food, :autocomplete => "off", :id => "food" do |f|
This is the tag it generates:
<form action-autocomplete="off" action-id="food" accept-charset="UTF-8" method="post">
How can I specify the html form id attribute from the form_for tag? Note that padrino has added an "action" before the autocomplete attribute as well.
This looks like a bug to me. I'm using version 0.12.2 of Padrino.