diff options
author | Stefan Wintermeyer <stefan.wintermeyer@amooma.de> | 2013-01-21 20:30:07 +0100 |
---|---|---|
committer | Stefan Wintermeyer <stefan.wintermeyer@amooma.de> | 2013-01-22 00:02:50 +0100 |
commit | c8973406e83861f593af33c959abd4529a855437 (patch) | |
tree | a2ed04326faf87298912c81bd7cee2944ce38c22 /lib/templates | |
parent | 18ed88c7e3c789366f6e5443dc4ee0bc981a4b88 (diff) |
rails generate simple_form:install --bootstrap
Diffstat (limited to 'lib/templates')
-rw-r--r-- | lib/templates/erb/scaffold/_form.html.erb | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/templates/erb/scaffold/_form.html.erb b/lib/templates/erb/scaffold/_form.html.erb index 24a1768..201a069 100644 --- a/lib/templates/erb/scaffold/_form.html.erb +++ b/lib/templates/erb/scaffold/_form.html.erb @@ -1,13 +1,13 @@ <%%= simple_form_for(@<%= singular_table_name %>) do |f| %> <%%= f.error_notification %> - <div class="inputs"> + <div class="form-inputs"> <%- attributes.each do |attribute| -%> <%%= f.<%= attribute.reference? ? :association : :input %> :<%= attribute.name %> %> <%- end -%> </div> - <div class="actions"> + <div class="form-actions"> <%%= f.button :submit %> </div> <%% end %> |