diff --git a/app/views/admin/budgets/_group.html.erb b/app/views/admin/budgets/_group.html.erb index 3660fa0c1..b608f3660 100644 --- a/app/views/admin/budgets/_group.html.erb +++ b/app/views/admin/budgets/_group.html.erb @@ -21,7 +21,6 @@ <%= t("admin.budgets.form.table_heading") %> <%= t("admin.budgets.form.table_amount") %> - <%= t("admin.budgets.form.table_geozone") %> @@ -45,10 +44,6 @@ maxlength: 8, placeholder: t("admin.budgets.form.amount") %> -
- - <%= f.select :geozone_id, geozone_select_options, {include_blank: t("geozones.none"), label: false} %> -
<%= f.submit t("admin.budgets.form.save_heading"), class: "button success" %> @@ -65,12 +60,9 @@ <%= heading.price %> - - <%= geozone_name_from_id heading.geozone_id %> - <% end %> - \ No newline at end of file + diff --git a/config/locales/admin.en.yml b/config/locales/admin.en.yml index 8f27677e7..222d11c78 100755 --- a/config/locales/admin.en.yml +++ b/config/locales/admin.en.yml @@ -88,10 +88,8 @@ en: amount: Amount save_heading: Save heading no_heading: This group has no assigned heading. - geozone: Scope of operation table_heading: Heading table_amount: Amount - table_geozone: Scope of operation budget_investments: index: heading_filter_all: All headings diff --git a/config/locales/admin.es.yml b/config/locales/admin.es.yml index 5f7f66ab6..d8c9036a8 100644 --- a/config/locales/admin.es.yml +++ b/config/locales/admin.es.yml @@ -88,10 +88,8 @@ es: amount: Cantidad save_heading: Guardar partida no_heading: Este grupo no tiene ninguna partida asignada. - geozone: Ámbito de actuación table_heading: Partida table_amount: Cantidad - table_geozone: Ámbito de actuación budget_investments: index: heading_filter_all: Todas las partidas diff --git a/spec/features/admin/budgets_spec.rb b/spec/features/admin/budgets_spec.rb index fccbd7785..70e85378d 100644 --- a/spec/features/admin/budgets_spec.rb +++ b/spec/features/admin/budgets_spec.rb @@ -153,7 +153,6 @@ feature 'Admin budgets' do expect(page).to have_content 'District 9 reconstruction' expect(page).to have_content '6785' - expect(page).to have_content 'All city' end end