diff --git a/app/views/redactions/edit.html.erb b/app/views/redactions/edit.html.erb index aff2af919..e9b5beaac 100644 --- a/app/views/redactions/edit.html.erb +++ b/app/views/redactions/edit.html.erb @@ -4,18 +4,8 @@
- <%= f.label :title, t(".title") %>
- <%= f.text_field :title %>
-
- <%= f.label :description, t(".description") %>
- <%= richtext_area :redaction, :description, :cols => 80, :rows => 20, :format => @redaction.description_format %>
-
- <%= f.submit %> -
+<%= bootstrap_form_for(@redaction) do |f| %> + <%= f.text_field :title %> + <%= f.richtext_field :description, :cols => 80, :rows => 20, :format => @redaction.description_format %> + <%= f.primary %> <% end %> diff --git a/app/views/redactions/new.html.erb b/app/views/redactions/new.html.erb index 02e729b35..64089b2b0 100644 --- a/app/views/redactions/new.html.erb +++ b/app/views/redactions/new.html.erb @@ -3,18 +3,8 @@
- <%= f.label :title, t(".title") %>
- <%= f.text_field :title %>
-
- <%= f.label :description, t(".description") %>
- <%= richtext_area :redaction, :description, :cols => 80, :rows => 20, :format => @redaction.description_format %>
-
- <%= f.submit %> -
+<%= bootstrap_form_for(@redaction) do |f| %> + <%= f.text_field :title %> + <%= f.richtext_field :description, :cols => 80, :rows => 20, :format => @redaction.description_format %> + <%= f.primary %> <% end %> diff --git a/app/views/redactions/show.html.erb b/app/views/redactions/show.html.erb index cf5116ede..22d17cd5d 100644 --- a/app/views/redactions/show.html.erb +++ b/app/views/redactions/show.html.erb @@ -13,12 +13,12 @@ <% if can?(:edit, Redaction) || can?(:destroy, Redaction) %> -