diff --git a/app/views/admin/billing/prices/_price.html.erb b/app/views/admin/billing/prices/_price.html.erb
index df5de4391..f2cf2027e 100644
--- a/app/views/admin/billing/prices/_price.html.erb
+++ b/app/views/admin/billing/prices/_price.html.erb
@@ -1,15 +1,8 @@
- <%= price.zone_name %> |
+ <%= link_to price.zone_name, edit_admin_price_path(price), id: 'admin-edit-price-btn' %> |
<%= price.duration.sub('mons', 'months') %> |
<%= price.operation_category %> |
<%= number_to_currency price.price %> |
<%= l price.valid_from, format: :date %> |
<%= l price.valid_to, format: :date %> |
-
- <%= link_to t('.edit_btn'), edit_admin_price_path(price), class: 'btn btn-xs btn-primary' %>
- <%= link_to(t('.delete_btn'), admin_price_path(price),
- method: :delete,
- data: { confirm: t('.delete_btn_confirm') },
- class: 'btn btn-xs btn-danger') %>
- |
diff --git a/app/views/admin/billing/prices/edit.html.erb b/app/views/admin/billing/prices/edit.html.erb
index 61cc348e2..75d82814f 100644
--- a/app/views/admin/billing/prices/edit.html.erb
+++ b/app/views/admin/billing/prices/edit.html.erb
@@ -3,7 +3,18 @@
<% if @price.persisted? && @price.errors.none? %>
diff --git a/app/views/admin/billing/prices/index.html.erb b/app/views/admin/billing/prices/index.html.erb
index ef6da0ed2..c675b8bde 100644
--- a/app/views/admin/billing/prices/index.html.erb
+++ b/app/views/admin/billing/prices/index.html.erb
@@ -20,7 +20,6 @@