diff options
| author | Michel Etienne | 2012-08-29 15:33:13 +0200 |
|---|---|---|
| committer | Michel Etienne | 2012-08-29 15:33:13 +0200 |
| commit | 5c8faccdc7712e8438dd8abef9732ac237e03f32 (patch) | |
| tree | 98a66ed9b0c8c767ac997e342646c46c00a3bfd2 | |
| parent | fcf5cf9e05e7ad35688e870d4805eeef28183c73 (diff) | |
| download | chouette-core-5c8faccdc7712e8438dd8abef9732ac237e03f32.tar.bz2 | |
add missing form:inputs
| -rw-r--r-- | app/views/time_tables/_form.erb | 5 |
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 %> |
