diff --git a/app/views/admin/communication/website/pages/_form.html.erb b/app/views/admin/communication/website/pages/_form.html.erb
index 15edf3743eb5bd8e6375f308aa683ae97628bcb0..ba8a97c730ad9cbb4593427bf5a4d96d1160b7ea 100644
--- a/app/views/admin/communication/website/pages/_form.html.erb
+++ b/app/views/admin/communication/website/pages/_form.html.erb
@@ -25,7 +25,7 @@
     </div>
   </div>
 </div>
-<% content_for :buttons do %>
+<% content_for :action_bar_right do %>
   <%= submit f %>
 <% end %>
 <% end %>
diff --git a/app/views/admin/communication/website/pages/index.html.erb b/app/views/admin/communication/website/pages/index.html.erb
index 157e08e9dc5aa647152f7ba1711596363a702057..ad9660f4628b805025cabc83bbc9562e23910536 100644
--- a/app/views/admin/communication/website/pages/index.html.erb
+++ b/app/views/admin/communication/website/pages/index.html.erb
@@ -2,6 +2,6 @@
 
 <%= render 'admin/communication/website/pages/list', pages: @pages %>
 
-<% content_for :buttons do %>
+<% content_for :action_bar_right do %>
   <%= create_link Communication::Website::Page %>
 <% end %>
diff --git a/app/views/admin/communication/website/pages/show.html.erb b/app/views/admin/communication/website/pages/show.html.erb
index b3f80e9321136c55491bf8d7881f24095cce2aef..3e51aa8bac77f0144d252df82225d35dcfd7b690 100644
--- a/app/views/admin/communication/website/pages/show.html.erb
+++ b/app/views/admin/communication/website/pages/show.html.erb
@@ -45,6 +45,6 @@
   </div>
 </div>
 
-<% content_for :buttons do %>
+<% content_for :action_bar_right do %>
   <%= edit_link @page %>
 <% end %>
diff --git a/app/views/admin/communication/website/posts/_form.html.erb b/app/views/admin/communication/website/posts/_form.html.erb
index 0201b4e0825c993c4bfce611e10c28850773e3b5..9d0ce19126fe029ae10ac26817ebc3615168fbf7 100644
--- a/app/views/admin/communication/website/posts/_form.html.erb
+++ b/app/views/admin/communication/website/posts/_form.html.erb
@@ -24,7 +24,7 @@
       </div>
     </div>
   </div>
-  <% content_for :buttons do %>
+  <% content_for :action_bar_right do %>
     <%= submit f %>
   <% end %>
 <% end %>
diff --git a/app/views/admin/communication/website/posts/index.html.erb b/app/views/admin/communication/website/posts/index.html.erb
index 395eec23b8745384f8fc77806f78f55a4afcfd69..c7b698bd4b07927064b96122ba4d1d2456e7701c 100644
--- a/app/views/admin/communication/website/posts/index.html.erb
+++ b/app/views/admin/communication/website/posts/index.html.erb
@@ -2,6 +2,6 @@
 
 <%= render 'admin/communication/website/posts/list', posts: @posts %>
 
-<% content_for :buttons do %>
+<% content_for :action_bar_right do %>
   <%= create_link Communication::Website::Post %>
 <% end %>
diff --git a/app/views/admin/communication/website/posts/show.html.erb b/app/views/admin/communication/website/posts/show.html.erb
index c4c1240332515975b46d01ec27dd01d0db63f119..a3c9b3ab74454938c0573562b4ffc2f16be90567 100644
--- a/app/views/admin/communication/website/posts/show.html.erb
+++ b/app/views/admin/communication/website/posts/show.html.erb
@@ -40,6 +40,6 @@
   </div>
 </div>
 
-<% content_for :buttons do %>
+<% content_for :action_bar_right do %>
   <%= edit_link @post %>
 <% end %>
diff --git a/app/views/admin/communication/websites/_form.html.erb b/app/views/admin/communication/websites/_form.html.erb
index 6e92bb9dbe77d26eacc71638f74453c0a62290b1..3ad7c36fae29967d3ecf8cdc7fa32781fa9bf8db 100644
--- a/app/views/admin/communication/websites/_form.html.erb
+++ b/app/views/admin/communication/websites/_form.html.erb
@@ -27,7 +27,7 @@
     <div class="col-md-4">
     </div>
   </div>
-  <% content_for :buttons do %>
+  <% content_for :action_bar_right do %>
     <%= submit f %>
   <% end %>
 <% end %>
diff --git a/app/views/admin/communication/websites/import.html.erb b/app/views/admin/communication/websites/import.html.erb
index cddec88ecf33be69e5af4546610320d4b362209a..4bceaded8daa30731a056bb9e261526226b5a525 100644
--- a/app/views/admin/communication/websites/import.html.erb
+++ b/app/views/admin/communication/websites/import.html.erb
@@ -1,5 +1,5 @@
 <% content_for :title, @website %>
-<% content_for :buttons do %>
+<% content_for :action_bar_right do %>
   <%= link_to t('communication.website.imported.refresh'),
               import_admin_communication_website_path,
               method: :post,
diff --git a/app/views/admin/communication/websites/index.html.erb b/app/views/admin/communication/websites/index.html.erb
index fd54aa8fc79d850b2a4f868834c7948852c5f7ea..51c9949db9cb722ab93cad522a1715f8cd630167 100644
--- a/app/views/admin/communication/websites/index.html.erb
+++ b/app/views/admin/communication/websites/index.html.erb
@@ -26,6 +26,6 @@
   </tbody>
 </table>
 
-<% content_for :buttons do %>
+<% content_for :action_bar_right do %>
   <%= create_link Communication::Website %>
 <% end %>
diff --git a/app/views/admin/communication/websites/show.html.erb b/app/views/admin/communication/websites/show.html.erb
index c80c33b936d5f9579047fce5f6ba14091e73bb05..99c6cb6d4c921914509df5f57cdc84f5cdce2b84 100644
--- a/app/views/admin/communication/websites/show.html.erb
+++ b/app/views/admin/communication/websites/show.html.erb
@@ -26,7 +26,7 @@
             admin_communication_website_pages_path(website_id: @website) %>
 <%= render 'admin/communication/website/pages/list', pages: @website.pages.recent %>
 
-<% content_for :buttons do %>
+<% content_for :action_bar_right do %>
   <% if @website.imported? %>
     <%= link_to t('communication.website.imported.show'),
                 import_admin_communication_website_path,
diff --git a/app/views/admin/education/programs/_form.html.erb b/app/views/admin/education/programs/_form.html.erb
index b46c733d033f04fff7a24652a0404789d831d8f4..d347aefe93c8c5a92c9c362350d4830fcb62afa7 100644
--- a/app/views/admin/education/programs/_form.html.erb
+++ b/app/views/admin/education/programs/_form.html.erb
@@ -28,7 +28,7 @@
       <%= f.input :evaluation, input_html: { rows: 5 } %>
     </div>
   </div>
-  <% content_for :buttons do %>
+  <% content_for :action_bar_right do %>
     <%= submit f %>
   <% end %>
 <% end %>
diff --git a/app/views/admin/education/programs/index.html.erb b/app/views/admin/education/programs/index.html.erb
index f100e7bbc315c579a367c3054d754872ffbdde31..e220d4867bc49606aebee8b787486df754eb94f4 100644
--- a/app/views/admin/education/programs/index.html.erb
+++ b/app/views/admin/education/programs/index.html.erb
@@ -22,6 +22,6 @@
   </tbody>
 </table>
 
-<% content_for :buttons do %>
+<% content_for :action_bar_right do %>
   <%= create_link Education::Program %>
 <% end %>
diff --git a/app/views/admin/education/programs/show.html.erb b/app/views/admin/education/programs/show.html.erb
index 7ebca949241cbfdc19764a396f19ff909e030883..06c15721e55dcab70d3a8dba80bd92eb72dbb619 100644
--- a/app/views/admin/education/programs/show.html.erb
+++ b/app/views/admin/education/programs/show.html.erb
@@ -60,6 +60,6 @@
   <%= @program.accessibility %>
 </p>
 
-<% content_for :buttons do %>
+<% content_for :action_bar_right do %>
   <%= edit_link @program %>
 <% end %>
diff --git a/app/views/admin/research/journal/articles/_form.html.erb b/app/views/admin/research/journal/articles/_form.html.erb
index 5953dc2e6e001c76aad2190e00659a4dbb283188..ef896f40c17eb304b3cbf280f7a40474c0a0bd63 100644
--- a/app/views/admin/research/journal/articles/_form.html.erb
+++ b/app/views/admin/research/journal/articles/_form.html.erb
@@ -28,7 +28,7 @@
       </div>
     </div>
   </div>
-  <% content_for :buttons do %>
+  <% content_for :action_bar_right do %>
     <%= submit f %>
   <% end %>
 <% end %>
diff --git a/app/views/admin/research/journal/articles/index.html.erb b/app/views/admin/research/journal/articles/index.html.erb
index 33e3e7daf884e8352907b6f457fd7788d7ac1ecd..00a03fe0682e74b3c311b46a16fb9fe0b8b15ba4 100644
--- a/app/views/admin/research/journal/articles/index.html.erb
+++ b/app/views/admin/research/journal/articles/index.html.erb
@@ -2,6 +2,6 @@
 
 <%= render 'admin/research/journal/articles/list', articles: @articles %>
 
-<% content_for :buttons do %>
+<% content_for :action_bar_right do %>
   <%= create_link Research::Journal::Article %>
 <% end %>
diff --git a/app/views/admin/research/journal/articles/show.html.erb b/app/views/admin/research/journal/articles/show.html.erb
index e143915f9a51588fcfae00a8b3dd3c8b8b4a6e94..fe43b0254e88c935269e0a37383462773631f088 100644
--- a/app/views/admin/research/journal/articles/show.html.erb
+++ b/app/views/admin/research/journal/articles/show.html.erb
@@ -44,6 +44,6 @@
   </div>
 </div>
 
-<% content_for :buttons do %>
+<% content_for :action_bar_right do %>
   <%= edit_link @article %>
 <% end %>
diff --git a/app/views/admin/research/journal/volumes/_form.html.erb b/app/views/admin/research/journal/volumes/_form.html.erb
index f7e1627a9c092f08ee3a603917df7e20e04b4af0..4427b2ab7b350cb190e09d307ec9ef042bdfceae 100644
--- a/app/views/admin/research/journal/volumes/_form.html.erb
+++ b/app/views/admin/research/journal/volumes/_form.html.erb
@@ -25,7 +25,7 @@
       </div>
     </div>
   </div>
-  <% content_for :buttons do %>
+  <% content_for :action_bar_right do %>
     <%= submit f %>
   <% end %>
 <% end %>
diff --git a/app/views/admin/research/journal/volumes/index.html.erb b/app/views/admin/research/journal/volumes/index.html.erb
index 61dd2eb3c92790d220f8eda1518c99ebf66aa064..6998ad87a3d0dd48d11dbb6404e4f9ad161b4568 100644
--- a/app/views/admin/research/journal/volumes/index.html.erb
+++ b/app/views/admin/research/journal/volumes/index.html.erb
@@ -22,6 +22,6 @@
   </tbody>
 </table>
 
-<% content_for :buttons do %>
+<% content_for :action_bar_right do %>
   <%= create_link Research::Journal::Volume %>
 <% end %>
diff --git a/app/views/admin/research/journal/volumes/show.html.erb b/app/views/admin/research/journal/volumes/show.html.erb
index b5e34f0ae4e652be9f32ee2e3e28ad42cfaaffd1..dcdaedf03db2db5814edf8e941107625465df612 100644
--- a/app/views/admin/research/journal/volumes/show.html.erb
+++ b/app/views/admin/research/journal/volumes/show.html.erb
@@ -27,6 +27,6 @@
   </div>
 </div>
 
-<% content_for :buttons do %>
+<% content_for :action_bar_right do %>
   <%= edit_link @volume %>
 <% end %>
diff --git a/app/views/admin/research/journals/_form.html.erb b/app/views/admin/research/journals/_form.html.erb
index 6292941b2082d0a764e5ae5c4978c46cb07db086..4bb0e3c9740c626f67a4b773638dd3f271e9e9b7 100644
--- a/app/views/admin/research/journals/_form.html.erb
+++ b/app/views/admin/research/journals/_form.html.erb
@@ -5,7 +5,7 @@
       <%= f.input :issn %>
     </div>
   </div>
-  <% content_for :buttons do %>
+  <% content_for :action_bar_right do %>
     <%= submit f %>
   <% end %>
 <% end %>
diff --git a/app/views/admin/research/journals/index.html.erb b/app/views/admin/research/journals/index.html.erb
index 32384f56472c7236fcb1e36e0580558af4743dd1..e3a66dd73fccf3f6efa14d5eca051482a9ae85b7 100644
--- a/app/views/admin/research/journals/index.html.erb
+++ b/app/views/admin/research/journals/index.html.erb
@@ -25,6 +25,6 @@
   </tbody>
 </table>
 
-<% content_for :buttons do %>
+<% content_for :action_bar_right do %>
   <%= create_link Research::Journal %>
 <% end %>
diff --git a/app/views/admin/research/journals/show.html.erb b/app/views/admin/research/journals/show.html.erb
index a195684694268337d07d4bde959f6fe57d64c477..8517584e362c995152997f1c3bbb18f3b3038b8d 100644
--- a/app/views/admin/research/journals/show.html.erb
+++ b/app/views/admin/research/journals/show.html.erb
@@ -42,6 +42,6 @@
 
 <%= render 'admin/research/journal/articles/list', articles: @journal.articles.ordered.limit(10) %>
 
-<% content_for :buttons do %>
+<% content_for :action_bar_right do %>
   <%= edit_link @journal %>
 <% end %>
diff --git a/app/views/admin/research/researchers/_form.html.erb b/app/views/admin/research/researchers/_form.html.erb
index bdda716a60930ffc291b3addfbe5d3750d5cfe13..aea62c4a05857e79ca7be037c4ba7c065a01a6fd 100644
--- a/app/views/admin/research/researchers/_form.html.erb
+++ b/app/views/admin/research/researchers/_form.html.erb
@@ -9,7 +9,7 @@
     <%= f.input :biography, input_html: { rows: 5 } %>
   </div>
 </div>
-  <% content_for :buttons do %>
+  <% content_for :action_bar_right do %>
     <%= submit f %>
   <% end %>
 <% end %>
diff --git a/app/views/admin/research/researchers/index.html.erb b/app/views/admin/research/researchers/index.html.erb
index 7f505895208a1269e67e2c3171c02e7ddb012de3..f7307ecaba379dfd569cdf8aa1df0d34e972880e 100644
--- a/app/views/admin/research/researchers/index.html.erb
+++ b/app/views/admin/research/researchers/index.html.erb
@@ -25,6 +25,6 @@
   </tbody>
 </table>
 
-<% content_for :buttons do %>
+<% content_for :action_bar_right do %>
   <%= create_link Research::Researcher %>
 <% end %>
diff --git a/app/views/admin/research/researchers/show.html.erb b/app/views/admin/research/researchers/show.html.erb
index 14c4a1c4866ecb350856a7ce50ba07353cd78f0f..d12b1c32b63810cd44b474b4b232174456a501d5 100644
--- a/app/views/admin/research/researchers/show.html.erb
+++ b/app/views/admin/research/researchers/show.html.erb
@@ -31,6 +31,6 @@
   </ul>
 </p>
 
-<% content_for :buttons do %>
+<% content_for :action_bar_right do %>
   <%= edit_link @researcher %>
 <% end %>
diff --git a/app/views/admin/users/_form.html.erb b/app/views/admin/users/_form.html.erb
index a39d469f0e75c5232c0170eb7f1c40270540a3e5..64227623d6e7bbfd485c94008c05c11eefa1b0e0 100644
--- a/app/views/admin/users/_form.html.erb
+++ b/app/views/admin/users/_form.html.erb
@@ -18,7 +18,7 @@
       <%= f.input :mobile_phone %>
     </div>
   </div>
-  <% content_for :buttons do %>
+  <% content_for :action_bar_right do %>
     <%= submit f %>
   <% end %>
 <% end %>
diff --git a/app/views/admin/users/index.html.erb b/app/views/admin/users/index.html.erb
index a55d80578f9c6e73c2b4dde5e200e6b5ec1e6d34..cf8e84b416ddc77b771ae579509c77b22e1dc540 100644
--- a/app/views/admin/users/index.html.erb
+++ b/app/views/admin/users/index.html.erb
@@ -28,6 +28,6 @@
   </tbody>
 </table>
 
-<% content_for :buttons do %>
+<% content_for :action_bar_right do %>
   <%= create_link User %>
 <% end %>
diff --git a/app/views/admin/users/show.html.erb b/app/views/admin/users/show.html.erb
index 6dc4aaca7f510814d69cde160be019cfaae351ca..ae799277f5ab6e7a75a892cc8186749023653e3e 100644
--- a/app/views/admin/users/show.html.erb
+++ b/app/views/admin/users/show.html.erb
@@ -41,6 +41,6 @@
 <% end %>
 
 
-<% content_for :buttons do %>
+<% content_for :action_bar_right do %>
   <%= edit_link @user %>
 <% end %>
diff --git a/app/views/server/languages/index.html.erb b/app/views/server/languages/index.html.erb
index 867cb62aa01fd9831f27686fc61239993daac0a5..03e167cb93e0334b12a3718e4f4ce07f8280ca82 100644
--- a/app/views/server/languages/index.html.erb
+++ b/app/views/server/languages/index.html.erb
@@ -22,6 +22,6 @@
   </tbody>
 </table>
 
-<% content_for :buttons do %>
+<% content_for :action_bar_right do %>
   <%= link_to t('create'), new_server_language_path, class: button_classes %>
 <% end %>
diff --git a/app/views/server/universities/index.html.erb b/app/views/server/universities/index.html.erb
index 0cb0a2953bb698f7d649b1080ba4714a7a2f31e0..cbf04c0d500fdaef80ace77bc5a3c690aef9b71d 100644
--- a/app/views/server/universities/index.html.erb
+++ b/app/views/server/universities/index.html.erb
@@ -23,6 +23,6 @@
   </tbody>
 </table>
 
-<% content_for :buttons do %>
+<% content_for :action_bar_right do %>
   <%= link_to t('create'), new_server_university_path, class: button_classes %>
 <% end %>