diff --git a/app/views/admin/communication/website/categories/show.html.erb b/app/views/admin/communication/website/categories/show.html.erb
index cff0dcbea413d4efe4a2d2a1aeb43fcf8af1fef8..d93cde4572e6610f0485515676dad3c2216eb7af 100644
--- a/app/views/admin/communication/website/categories/show.html.erb
+++ b/app/views/admin/communication/website/categories/show.html.erb
@@ -78,4 +78,5 @@
 
 <% content_for :action_bar_right do %>
   <%= edit_link @category %>
+  <%= destroy_link @category %>
 <% end %>
diff --git a/app/views/admin/communication/website/menus/show.html.erb b/app/views/admin/communication/website/menus/show.html.erb
index 539c1f48fa24f50c684836ad9dfa0d704ef1b674..98f7320ebaa5724b2ffde993a88961d587b37633 100644
--- a/app/views/admin/communication/website/menus/show.html.erb
+++ b/app/views/admin/communication/website/menus/show.html.erb
@@ -31,4 +31,5 @@
 
 <% content_for :action_bar_right do %>
   <%= edit_link @menu %>
+  <%= destroy_link @menu %>
 <% end %>
diff --git a/app/views/admin/communication/website/pages/show.html.erb b/app/views/admin/communication/website/pages/show.html.erb
index ac00e0c2f942dbd56a56fde56d4c356e6cfd0b88..eb1059a31dcff8f629726b24debcedaff75f9958 100644
--- a/app/views/admin/communication/website/pages/show.html.erb
+++ b/app/views/admin/communication/website/pages/show.html.erb
@@ -96,4 +96,5 @@
 <% content_for :action_bar_right do %>
   <%= preview_link %>
   <%= edit_link @page %>
+  <%= destroy_link @page %>
 <% end %>
diff --git a/app/views/admin/communication/website/posts/show.html.erb b/app/views/admin/communication/website/posts/show.html.erb
index 4a9c1ee79c6366acad6add693da8441be8f6dc43..2929f1d220b8535764310e85947b98a1df40d2f6 100644
--- a/app/views/admin/communication/website/posts/show.html.erb
+++ b/app/views/admin/communication/website/posts/show.html.erb
@@ -74,4 +74,5 @@
 <% content_for :action_bar_right do %>
   <%= preview_link %>
   <%= edit_link @post %>
+  <%= destroy_link @post %>
 <% end %>
diff --git a/app/views/admin/communication/websites/show.html.erb b/app/views/admin/communication/websites/show.html.erb
index d129cb67f7c37d99aa75187a5b18661dca4cd80e..5057c724143e0766d113becb013237861bc4dbdc 100644
--- a/app/views/admin/communication/websites/show.html.erb
+++ b/app/views/admin/communication/websites/show.html.erb
@@ -15,7 +15,7 @@
   <%= render 'admin/communication/websites/show/pages' if can? :read, Communication::Website::Page %>
 <% end %>
 
-<% content_for :action_bar_right do %>
+<% content_for :action_bar_left do %>
   <% if can? :read, Communication::Website::Imported::Website %>
     <% if @website.imported? %>
       <%= link_to t('communication.website.imported.show'),
@@ -28,5 +28,9 @@
                   class: button_classes %>
     <% end %>
   <% end %>
+<% end %>
+
+<% content_for :action_bar_right do %>
   <%= edit_link @website %>
+  <%= destroy_link @website %>
 <% end %>
diff --git a/app/views/admin/education/programs/show.html.erb b/app/views/admin/education/programs/show.html.erb
index c15cd14b87554540c7ffbc4243d1aad2b8062b5c..8d9ed285e17282ca5affe5b67c070ac10b7cdae0 100644
--- a/app/views/admin/education/programs/show.html.erb
+++ b/app/views/admin/education/programs/show.html.erb
@@ -125,4 +125,5 @@
 <% content_for :action_bar_right do %>
   <%= preview_link %>
   <%= edit_link @program %>
+  <%= destroy_link @program %>
 <% end %>
diff --git a/app/views/admin/education/schools/show.html.erb b/app/views/admin/education/schools/show.html.erb
index 2bd93a35f76d5ae1e23836e4b513b10860d460f5..4ef8f5ae880852be52d49e7b0d6d719ebe472bd6 100644
--- a/app/views/admin/education/schools/show.html.erb
+++ b/app/views/admin/education/schools/show.html.erb
@@ -60,4 +60,5 @@
 
 <% content_for :action_bar_right do %>
   <%= edit_link @school %>
+  <%= destroy_link @school %>
 <% end %>
diff --git a/app/views/admin/research/journal/articles/show.html.erb b/app/views/admin/research/journal/articles/show.html.erb
index eab6570427a5af42ca95eab6ca16789bacc92d5c..da0caf4c580b2ce48c876f4b961e3a202e7eb930 100644
--- a/app/views/admin/research/journal/articles/show.html.erb
+++ b/app/views/admin/research/journal/articles/show.html.erb
@@ -56,4 +56,5 @@
 
 <% content_for :action_bar_right do %>
   <%= edit_link @article %>
+  <%= destroy_link @article %>
 <% end %>
diff --git a/app/views/admin/research/journal/volumes/show.html.erb b/app/views/admin/research/journal/volumes/show.html.erb
index d485e48b49840e135c31b7378a6aaf68f10abe82..ecb910c398691e53c0b3d2032299e4ce356cca9f 100644
--- a/app/views/admin/research/journal/volumes/show.html.erb
+++ b/app/views/admin/research/journal/volumes/show.html.erb
@@ -81,4 +81,5 @@
 
 <% content_for :action_bar_right do %>
   <%= edit_link @volume %>
+  <%= destroy_link @volume %>
 <% end %>
diff --git a/app/views/admin/research/journals/show.html.erb b/app/views/admin/research/journals/show.html.erb
index 6866b76a8a9a243db2253d4a2113704c378e798a..cd56929b153499ca1cb12d1a3bd4e5aa7d13c97d 100644
--- a/app/views/admin/research/journals/show.html.erb
+++ b/app/views/admin/research/journals/show.html.erb
@@ -57,4 +57,5 @@
 
 <% content_for :action_bar_right do %>
   <%= edit_link @journal %>
+  <%= destroy_link @journal %>
 <% end %>
diff --git a/app/views/admin/research/laboratories/show.html.erb b/app/views/admin/research/laboratories/show.html.erb
index 1dc1c44b0d3e2107d47280853b82af91de13b7a2..6c78d471c6e848c6025e6c0f4c890fcec4f5351b 100644
--- a/app/views/admin/research/laboratories/show.html.erb
+++ b/app/views/admin/research/laboratories/show.html.erb
@@ -16,4 +16,5 @@
 
 <% content_for :action_bar_right do %>
   <%= edit_link @laboratory %>
+  <%= destroy_link @laboratory %>
 <% end %>
diff --git a/app/views/admin/research/laboratory/axes/show.html.erb b/app/views/admin/research/laboratory/axes/show.html.erb
index 33a33613fcf50803b4ff9410b5550451a9abcd79..241fef013b3c394c729398522625830e6b20db7a 100644
--- a/app/views/admin/research/laboratory/axes/show.html.erb
+++ b/app/views/admin/research/laboratory/axes/show.html.erb
@@ -22,4 +22,5 @@
 
 <% content_for :action_bar_right do %>
   <%= edit_link @axis %>
+  <%= destroy_link @axis %>
 <% end %>
diff --git a/app/views/admin/research/theses/show.html.erb b/app/views/admin/research/theses/show.html.erb
index b8d8ef53c9aeefdad2e106affc0163fda655e268..9e9880862ea9f7369375d6a832fd5088f0ddf845 100644
--- a/app/views/admin/research/theses/show.html.erb
+++ b/app/views/admin/research/theses/show.html.erb
@@ -2,4 +2,5 @@
 
 <% content_for :action_bar_right do %>
   <%= edit_link @thesis %>
+  <%= destroy_link @thesis %>
 <% end %>
diff --git a/app/views/admin/university/people/show.html.erb b/app/views/admin/university/people/show.html.erb
index c9b12d40fb606ba3df86fd758597dd8fecc108c3..c613c9003e87d038ee66eadf0c425be0b50baaf7 100644
--- a/app/views/admin/university/people/show.html.erb
+++ b/app/views/admin/university/people/show.html.erb
@@ -21,4 +21,5 @@
 
 <% content_for :action_bar_right do %>
   <%= edit_link @person %>
+  <%= destroy_link @person %>
 <% end %>
diff --git a/app/views/admin/users/show.html.erb b/app/views/admin/users/show.html.erb
index 746c076a51fcebff37d66b2f286d7f42ecde67fa..9215009724a355b91993f4fbfde5be18e0f947bb 100644
--- a/app/views/admin/users/show.html.erb
+++ b/app/views/admin/users/show.html.erb
@@ -49,4 +49,5 @@
 
 <% content_for :action_bar_right do %>
   <%= edit_link @user %>
+  <%= destroy_link @user %>
 <% end %>