aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMichel Etienne2012-08-29 15:33:13 +0200
committerMichel Etienne2012-08-29 15:33:13 +0200
commit5c8faccdc7712e8438dd8abef9732ac237e03f32 (patch)
tree98a66ed9b0c8c767ac997e342646c46c00a3bfd2
parentfcf5cf9e05e7ad35688e870d4805eeef28183c73 (diff)
downloadchouette-core-5c8faccdc7712e8438dd8abef9732ac237e03f32.tar.bz2
add missing form:inputs
-rw-r--r--app/views/time_tables/_form.erb5
1 files changed, 4 insertions, 1 deletions
diff --git a/app/views/time_tables/_form.erb b/app/views/time_tables/_form.erb
index 1fdf78335..2b97a43e2 100644
--- a/app/views/time_tables/_form.erb
+++ b/app/views/time_tables/_form.erb
@@ -13,7 +13,10 @@
<%= form.input :saturday, :as => :boolean %>
<%= form.input :sunday, :as => :boolean %>
<% end %>
- <%= form.input :objectid, :input_html => { :disabled => !@time_table.new_record? } %>
+ <%= form.inputs do %>
+ <%= form.input :objectid, :input_html => { :disabled => !@time_table.new_record? } %>
+ <% end %>
+
<%= form.actions do %>
<%= form.action :submit, :as => :button %>
<%= form.action :cancel, :as => :link %>