diff --git a/app/views/admin/budget_groups/_form.html.erb b/app/views/admin/budget_groups/_form.html.erb
index 5dc71c1e6..bd3cb7d12 100644
--- a/app/views/admin/budget_groups/_form.html.erb
+++ b/app/views/admin/budget_groups/_form.html.erb
@@ -1,24 +1,34 @@
<%= render "shared/globalize_locales", resource: @group %>
-
- <%= translatable_form_for [:admin, @budget, @group], url: path do |f| %>
+<%= translatable_form_for [:admin, @budget, @group], url: path do |f| %>
- <%= render "shared/errors", resource: @group %>
+ <%= render "shared/errors", resource: @group %>
+
<%= f.translatable_fields do |translations_form| %>
- <%= translations_form.text_field :name,
- label: t("admin.budget_groups.form.name"),
- maxlength: 50,
- placeholder: t("admin.budget_groups.form.name") %>
+
+ <%= translations_form.text_field :name,
+ label: t("admin.budget_groups.form.name"),
+ maxlength: 50,
+ placeholder: t("admin.budget_groups.form.name") %>
+
<% end %>
+
- <% if @group.persisted? %>
+ <% if @group.persisted? %>
+
+
<%= f.select :max_votable_headings,
(1..@group.headings.count),
label: t("admin.budget_groups.max_votable_headings"),
placeholder: t("admin.budget_groups.max_votable_headings") %>
- <% end %>
-
- <%= f.submit t("admin.budget_groups.form.#{action}"), class: "button success" %>
+
+
<% end %>
-
+
+