app/views/character/pages/form.html.erb in character-1.0.5 vs app/views/character/pages/form.html.erb in character-1.0.6
- old
+ new
@@ -1,11 +1,12 @@
<% 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 :seo_title %>
+ <%= f.input :seo_description, as: :text %>
<%= f.input :path %>
<%= f.input :template_name, collection: page_templates, include_blank: false %>
<%= f.input :hidden, as: :hidden %>
<% end %>
</div>
@@ -17,10 +18,11 @@
<% 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 :seo_title %>
+ <%= f.input :seo_description, as: :text %>
<%= f.input :path %>
<%= f.input :template_name, collection: page_templates, include_blank: false %>
<%= f.input :hidden, as: :hidden %>
</div>
<% end %>