summaryrefslogtreecommitdiff
path: root/lib
diff options
context:
space:
mode:
authorjomo <github@jomo.tv>2014-04-28 03:01:33 +0200
committerjomo <github@jomo.tv>2014-04-28 03:01:33 +0200
commit65f5adf65d2cf95bc5b6c06f47cc4d4f860cc7eb (patch)
treef36397378e7527f822a0856e0c83c0ec4bd1d55d /lib
parenta6ba503e735fc32028bd9b48f2eeaada86842546 (diff)
a TON of bugfixes and new features
Diffstat (limited to 'lib')
-rw-r--r--lib/templates/erb/scaffold/_form.html.erb13
1 files changed, 0 insertions, 13 deletions
diff --git a/lib/templates/erb/scaffold/_form.html.erb b/lib/templates/erb/scaffold/_form.html.erb
deleted file mode 100644
index 201a069..0000000
--- a/lib/templates/erb/scaffold/_form.html.erb
+++ /dev/null
@@ -1,13 +0,0 @@
-<%%= simple_form_for(@<%= singular_table_name %>) do |f| %>
- <%%= f.error_notification %>
-
- <div class="form-inputs">
- <%- attributes.each do |attribute| -%>
- <%%= f.<%= attribute.reference? ? :association : :input %> :<%= attribute.name %> %>
- <%- end -%>
- </div>
-
- <div class="form-actions">
- <%%= f.button :submit %>
- </div>
-<%% end %>