app/views/character/pages/form.html.erb in character-1.0.4 vs app/views/character/pages/form.html.erb in character-1.0.5

- old
+ new

@@ -1,10 +1,11 @@ <% if @object.persisted? %> <div class='chr-form-small chr-form-scrolled-up'> <%= simple_nested_form_for @object, url: @form_action_url, method: :post do |f| %> <%= f.input :title %> + <%= f.input :description, as: :text %> <%= f.input :path %> <%= f.input :template_name, collection: page_templates, include_blank: false %> <%= f.input :hidden, as: :hidden %> <% end %> </div> @@ -16,13 +17,14 @@ <% else %> <div class='chr-form-small'> <%= simple_form_for @object, url: @form_action_url do |f| %> <%= f.input :title %> + <%= f.input :description, as: :text %> <%= f.input :path %> <%= f.input :template_name, collection: page_templates, include_blank: false %> <%= f.input :hidden, as: :hidden %> </div> <% end %> </div> -<% end %> \ No newline at end of file +<% end %>