diff --git a/app/views/admin/application/a11y/_widget.html.erb b/app/views/admin/application/a11y/_widget.html.erb
index a7521a758c073a1b05f8d7289479992a2fbf14d2..31255334f878a6ef5553dd273898156e374a2b90 100644
--- a/app/views/admin/application/a11y/_widget.html.erb
+++ b/app/views/admin/application/a11y/_widget.html.erb
@@ -2,7 +2,7 @@
 color = about.accessible? ? 'text-success' : 'text-danger'
 action = "<i class=\"fas fa-universal-access fa-2x float-end #{ color}\"></i>"
 %>
-<%= panel title: t('accessibility.label'), action: action do %>
+<%= osuny_panel title: t('accessibility.label'), action: action do %>
   <% if about.accessibility_errors.any? %>
     <h3 class="h5 text-danger">
       <%= t 'accessibility.errors', count: about.accessibility_errors.count %>
diff --git a/app/views/admin/application/featured_image/_edit.html.erb b/app/views/admin/application/featured_image/_edit.html.erb
index 64957e1386c26b6692ab5eb56a613ea6da11ed35..0f9b3e18d6927fe1099f211f67518d48e19a7754 100644
--- a/app/views/admin/application/featured_image/_edit.html.erb
+++ b/app/views/admin/application/featured_image/_edit.html.erb
@@ -1,4 +1,4 @@
-<%= panel title: t('featured_image.title') do %>
+<%= osuny_panel title: t('featured_image.title') do %>
   <%= f.input :featured_image,
               as: :single_deletable_file,
               direct_upload: true,
diff --git a/app/views/admin/application/featured_image/_show.html.erb b/app/views/admin/application/featured_image/_show.html.erb
index 2b86bdd89b03678986d5cd541b794ce00bdb250b..ab7fb2cde87a42bfabc9f8753551af83c991e402 100644
--- a/app/views/admin/application/featured_image/_show.html.erb
+++ b/app/views/admin/application/featured_image/_show.html.erb
@@ -1,4 +1,4 @@
-<%= panel title: t('featured_image.title') do %>
+<%= osuny_panel title: t('featured_image.title') do %>
   <% image = about.best_featured_image.variable?  ? about.best_featured_image.variant(resize: '600')
                                                   : about.best_featured_image %>
   <%= image_tag image, class: 'img-fluid mb-2' %>
diff --git a/app/views/admin/application/meta_description/_form.html.erb b/app/views/admin/application/meta_description/_form.html.erb
index 137f6dff87eba83e1a09a327e7175944eec2ac18..f4f7b9b1a66c427295ee86f84547120860d22304 100644
--- a/app/views/admin/application/meta_description/_form.html.erb
+++ b/app/views/admin/application/meta_description/_form.html.erb
@@ -1,4 +1,4 @@
-<%= panel title: t('admin.summary') do %>
+<%= osuny_panel title: t('admin.summary') do %>
   <%= f.input :meta_description,
               label: t('admin.meta_description.label'),
               hint: t('admin.meta_description.hint'),
diff --git a/app/views/admin/application/meta_description/_show.html.erb b/app/views/admin/application/meta_description/_show.html.erb
index 9a8052df947464004d748a14b757e7c5669b14ea..300c1102ed4a7be82761d18b51a3a50c08da9813 100644
--- a/app/views/admin/application/meta_description/_show.html.erb
+++ b/app/views/admin/application/meta_description/_show.html.erb
@@ -1,4 +1,4 @@
-<%= panel title: t('seo') do %>
+<%= osuny_panel title: t('seo') do %>
   <h3 class="h5"><%= t('admin.meta_description.label') %></h3>
   <p><%= sanitize about.meta_description %></p>
 <% end unless about.meta_description.blank? %>
diff --git a/app/views/admin/application/summary/_show.html.erb b/app/views/admin/application/summary/_show.html.erb
index 5ad53f6a0d9e3ceb7ea041f112a506b94117fa09..90fcc123832fa6ed470e84f52c5ad6b5d7c0e5af 100644
--- a/app/views/admin/application/summary/_show.html.erb
+++ b/app/views/admin/application/summary/_show.html.erb
@@ -1,3 +1,3 @@
-<%= panel title: t('admin.summary') do %>
+<%= osuny_panel title: t('admin.summary') do %>
   <p class="lead"><%= sanitize about.summary %></p>
 <% end unless about.summary.blank? %>
diff --git a/app/views/admin/communication/blocks/_list.html.erb b/app/views/admin/communication/blocks/_list.html.erb
index 43d3ec96845255615e06313472add3638447edf7..1a296c913cac76dee7fe481b193cabe7dea93bae 100644
--- a/app/views/admin/communication/blocks/_list.html.erb
+++ b/app/views/admin/communication/blocks/_list.html.erb
@@ -4,7 +4,7 @@ action += link_to t('add'),
                   new_admin_communication_block_path(about_id: about.id, about_type: about.class.name),
                   class: button_classes if can? :create, Communication::Block
 %>
-<%= panel title: Communication::Block.model_name.human(count: 2), action: action do %>
+<%= osuny_panel title: Communication::Block.model_name.human(count: 2), action: action do %>
   <% if about.blocks.any? %>
     <div class="table-responsive">
       <table class="<%= table_classes %>">
diff --git a/app/views/admin/communication/websites/pages/_form.html.erb b/app/views/admin/communication/websites/pages/_form.html.erb
index 4935171c60766c53feb3dea9a42ad93c801543ab..9c424c05927c673c266922f553aeb93b01647aa0 100644
--- a/app/views/admin/communication/websites/pages/_form.html.erb
+++ b/app/views/admin/communication/websites/pages/_form.html.erb
@@ -8,7 +8,7 @@ url = page.new_record?  ? admin_communication_website_pages_path
 
   <div class="row">
     <div class="col-md-8">
-      <%= panel title: t('content') do %>
+      <%= osuny_panel title: t('content') do %>
         <%= f.input :title %>
         <%= f.input :breadcrumb_title %>
         <%= render 'admin/application/summary/form', f: f, about: page %>
diff --git a/app/views/admin/communication/websites/pages/show/_metadata.html.erb b/app/views/admin/communication/websites/pages/show/_metadata.html.erb
index 33de1e2523a4f31ff5c01b788fe2e2c796749422..45451bb697985723e91d5d26f65d998ba0e8b63e 100644
--- a/app/views/admin/communication/websites/pages/show/_metadata.html.erb
+++ b/app/views/admin/communication/websites/pages/show/_metadata.html.erb
@@ -1,7 +1,7 @@
 <%
 action = link_to t('open'), @page.url, target: :_blank, class: 'btn btn-light btn-xs'
 %>
-<%= panel title: t('metadata'), action: action do %>
+<%= osuny_panel title: t('metadata'), action: action do %>
   <h3 class="h5"><%= Communication::Website::Page.human_attribute_name('published') %></h3>
   <p><%= t @page.published %></p>
   <% unless @page.slug.blank? %>
diff --git a/app/views/admin/communication/websites/posts/_form.html.erb b/app/views/admin/communication/websites/posts/_form.html.erb
index d556f65f05ab44b5d7f02967df8d5b8333beb995..01a5e69874ea9b4aaf1474cc018712309fca0c15 100644
--- a/app/views/admin/communication/websites/posts/_form.html.erb
+++ b/app/views/admin/communication/websites/posts/_form.html.erb
@@ -4,7 +4,7 @@
 
   <div class="row">
     <div class="col-md-8">
-      <%= panel title: t('content') do %>
+      <%= osuny_panel title: t('content') do %>
         <%= f.input :title %>
         <%= render 'admin/application/summary/form', f: f, about: post %>
         <%= f.input :text, as: :summernote if post.text&.to_plain_text.present? %>
@@ -12,7 +12,7 @@
       <div class="row pure__row--small">
         <% if @website.categories.any? %>
           <div class="col-md-6">
-            <%= panel title: t('activerecord.attributes.communication/website/post.categories') do %>
+            <%= osuny_panel title: t('activerecord.attributes.communication/website/post.categories') do %>
               <%= f.association :categories,
                                 label_text: false,
                                 as: :check_boxes,
@@ -26,7 +26,7 @@
       </div>
     </div>
     <div class="col-md-4">
-      <%= panel title: t('metadata') do %>
+      <%= osuny_panel title: t('metadata') do %>
         <% if can? :publish, post %>
           <div class="row pure__row--small">
             <div class="col-6">
diff --git a/app/views/admin/communication/websites/posts/index.html.erb b/app/views/admin/communication/websites/posts/index.html.erb
index 93c6d7fd50de8bdd4c19d12ca881f502a17c285c..fdbf1fb9345fc52dfc6c3e5d1947e8ab2d85a253 100644
--- a/app/views/admin/communication/websites/posts/index.html.erb
+++ b/app/views/admin/communication/websites/posts/index.html.erb
@@ -6,7 +6,7 @@
 <% end %>
 
 <%= render 'admin/communication/websites/sidebar' do %>
-  <%= panel title: Communication::Website::Post.model_name.human(count: 2) do %>
+  <%= osuny_panel title: Communication::Website::Post.model_name.human(count: 2) do %>
     <%= render 'filters', current_path: admin_communication_website_posts_path, filters: @filters if @filters.any? %>
     <div data-batch-selectable>
       <%= form_tag publish_admin_communication_website_posts_path do %>
@@ -41,7 +41,7 @@
     <% if can?(:create, Communication::Website::Category) || (@root_categories.any? && can?(:edit, @root_categories.first))  %>
       <div class="col-md-6">
         <% action = create_link Communication::Website::Category %>
-        <%= panel title: Communication::Website::Category.model_name.human(count: 2), action: action do %>
+        <%= osuny_panel title: Communication::Website::Category.model_name.human(count: 2), action: action do %>
           <ul class="list-unstyled treeview treeview--sortable js-treeview js-treeview-sortable js-treeview-sortable-container"
               data-id=""
               data-sort-url="<%= reorder_admin_communication_website_categories_path %>">
@@ -52,7 +52,7 @@
     <% end %>
     <% if @authors.any? %>
       <div class="col-md-6">
-        <%= panel title: t('communication.authors', count: 2) do %>
+        <%= osuny_panel title: t('communication.authors', count: 2) do %>
           <%= render 'admin/communication/websites/authors/list', authors: @authors %>
           <% if @authors.total_pages > 1 %>
             <%= paginate @authors, theme: 'bootstrap-5', param_name: :authors_page %>
diff --git a/app/views/admin/communication/websites/posts/show.html.erb b/app/views/admin/communication/websites/posts/show.html.erb
index 3c945df0408fb896fc868524fb88b3841e692a1a..2fba951182c328eba7bbb110f0895166d0c96cc6 100644
--- a/app/views/admin/communication/websites/posts/show.html.erb
+++ b/app/views/admin/communication/websites/posts/show.html.erb
@@ -15,7 +15,7 @@
                       class: 'btn btn-light' %>
         <% end %>
       </div>
-      <%= panel title: t('metadata') do %>
+      <%= osuny_panel title: t('metadata') do %>
         <div class="row pure__row--small">
           <div class="col-6">
             <h3 class="h5"><%= Communication::Website::Post.human_attribute_name('published') %></h3>
diff --git a/app/views/admin/communication/websites/show/_pages.html.erb b/app/views/admin/communication/websites/show/_pages.html.erb
index db7b021af8e4979ac9b3c334eacca490395ddc66..88ff2eec4b8b9e071d91a1d9d993bcd1e2b3950b 100644
--- a/app/views/admin/communication/websites/show/_pages.html.erb
+++ b/app/views/admin/communication/websites/show/_pages.html.erb
@@ -4,6 +4,6 @@ action += link_to t('create'),
                   new_admin_communication_website_page_path(website_id: @website),
                   class: button_classes if can?(:create, Communication::Website::Page)
 %>
-<%= panel title: t('communication.website.last_pages'), action: action do %>
+<%= osuny_panel title: t('communication.website.last_pages'), action: action do %>
   <%= render 'admin/communication/websites/pages/list', pages: @pages %>
 <% end %>
\ No newline at end of file
diff --git a/app/views/admin/communication/websites/show/_posts.html.erb b/app/views/admin/communication/websites/show/_posts.html.erb
index b4afb45972e2ca9eab0b60d481782cdc2f1c7a7f..bd0766ad36aedc9abb3cb4a4aa4a77770a7de883 100644
--- a/app/views/admin/communication/websites/show/_posts.html.erb
+++ b/app/views/admin/communication/websites/show/_posts.html.erb
@@ -7,7 +7,7 @@ action += link_to t('create'),
                   new_admin_communication_website_post_path(website_id: @website),
                   class: button_classes('ms-1') if can?(:create, Communication::Website::Post)
 %>
-<%= panel title: t('communication.website.last_posts'), action: action do %>
+<%= osuny_panel title: t('communication.website.last_posts'), action: action do %>
   <%= render 'admin/communication/websites/posts/list',
               posts: @posts,
               hide_author: true,
diff --git a/app/views/admin/dashboard/index.html.erb b/app/views/admin/dashboard/index.html.erb
index 0ef2ba438a6c20d6ae98723922b12e478fe0b088..17035cd5cf73df76601a753b786f831aa6feba34 100644
--- a/app/views/admin/dashboard/index.html.erb
+++ b/app/views/admin/dashboard/index.html.erb
@@ -3,7 +3,7 @@
 
 <div class="row mb-5">
   <div class="col-md-6 pb-4">
-    <%= panel title: t('hello', name: current_user.first_name) do %>
+    <%= osuny_panel title: t('hello', name: current_user.first_name) do %>
       <% if current_admin_theme == 'appstack' %>
         <p>
           Osuny a un nouveau thème pour l'administration, "Pure". <br>
@@ -27,7 +27,7 @@
     <% end %>
   </div>
   <div class="col-md-6 pb-4">
-    <%= panel title: Delayed::Job.all.length, 
+    <%= osuny_panel title: Delayed::Job.all.length, 
               action: '<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="feather feather-clock align-baseline"><circle cx="12" cy="12" r="10"></circle><polyline points="12 6 12 12 16 14"></polyline></svg>' do %>
       <p class="mb-0"><%= t 'admin.pending_tasks.label' %></p>
       <p class="mb-0 small"><%= t 'admin.pending_tasks.hint' %></p>
@@ -41,7 +41,7 @@
     <% current_university.communication_websites.each do |website| %>
       <% next unless can?(:read, website) %>
       <div class="<%= classes %>">
-        <%= panel title: website, 
+        <%= osuny_panel title: website, 
                   action: "<i class=\"fas fa-#{ Icon::COMMUNICATION_WEBSITE }\"></i>" do %>
           <p class="small"><%= website.url %></p>
           <%= link_to t('show'), [:admin, website], class: button_classes('stretched-link') %>
@@ -57,7 +57,7 @@
     <% current_university.communication_extranets.each do |extranet| %>
       <% next unless can?(:read, extranet) %>
       <div class="<%= classes %>">
-        <%= panel title: extranet, 
+        <%= osuny_panel title: extranet, 
                   action: "<i class=\"fas fa-#{ Icon::COMMUNICATION_EXTRANET }\"></i>" do %>
           <p class="small"><%= extranet.url %></p>
           <%= link_to t('show'), [:admin, extranet], class: button_classes('stretched-link') %>
@@ -73,7 +73,7 @@
     <% current_university.research_journals.each do |journal| %>
       <% next unless can?(:read, journal) %>
       <div class="<%= classes %>">
-        <%= panel title: journal, 
+        <%= osuny_panel title: journal, 
             action: "<i class=\"fas fa-#{ Icon::RESEARCH_JOURNAL }\"></i>" do %>
           <%= link_to t('show'), [:admin, journal], class: button_classes('stretched-link') %>
         <% end %>
diff --git a/app/views/admin/education/teachers/show/_programs.html.erb b/app/views/admin/education/teachers/show/_programs.html.erb
index 262cc5099d176e8f71fc44c5fd033ff45c655321..a777a8467b0ad7b8327b134c7e50f7e36779e267 100644
--- a/app/views/admin/education/teachers/show/_programs.html.erb
+++ b/app/views/admin/education/teachers/show/_programs.html.erb
@@ -1,6 +1,6 @@
 <% param_name ||= :page %>
 <% if involvements.total_count > 0 %>
-  <%= panel title: Education::Program.model_name.human(count: 2),
+  <%= osuny_panel title: Education::Program.model_name.human(count: 2),
             subtitle: "#{involvements.total_count} #{Education::Program.model_name.human(count: involvements.total_count).downcase}" do %>
 
     <div class="table-responsive">
diff --git a/app/views/admin/university/people/_form.html.erb b/app/views/admin/university/people/_form.html.erb
index 2b4c8d345073d44685dd2811b8a79d1e7fc3715a..5c9b4e9f959f2f1bd9f51edb358d704f36ce1eef 100644
--- a/app/views/admin/university/people/_form.html.erb
+++ b/app/views/admin/university/people/_form.html.erb
@@ -4,7 +4,7 @@
 
   <div class="row">
     <div class="col-md-8">
-      <%= panel title: University::Person.human_attribute_name('essentials') do %>
+      <%= osuny_panel title: University::Person.human_attribute_name('essentials') do %>
         <div class="row pure__row--small">
           <div class="col-xxl-6">
             <%= f.input :first_name %>
@@ -28,7 +28,7 @@
                       data: { 'summernote-config' => 'mini-list' }
                     } %>
       <% end %>
-      <%= panel title: University::Person.human_attribute_name('contacts') do %>
+      <%= osuny_panel title: University::Person.human_attribute_name('contacts') do %>
         <p><em><%= t("university.person.personal_data_warning") %></em></p>
         <div class="row pure__row--small">
           <div class="col-xxl-6">
@@ -57,7 +57,7 @@
           </div>
         </div>
       <% end %>
-      <%= panel title: University::Person.human_attribute_name('socials') do %>
+      <%= osuny_panel title: University::Person.human_attribute_name('socials') do %>
         <p><em><%= t("university.person.personal_data_warning") %></em></p>
         <div class="row pure__row--small">
           <div class="col-xxl-6">
@@ -74,7 +74,7 @@
           </div>
         </div>
       <% end %>
-      <%= panel title: University::Person.human_attribute_name('abilities') do %>
+      <%= osuny_panel title: University::Person.human_attribute_name('abilities') do %>
         <div class="row pure__row--small">
           <div class="col-xxl-6">
             <%= f.input :is_teacher %>
@@ -90,7 +90,7 @@
       <% end %>
     </div>
     <div class="col-md-4">
-      <%= panel title: t('metadata') do %>
+      <%= osuny_panel title: t('metadata') do %>
           <%= f.input :slug,
                       as: :string,
                       input_html: person.persisted? ? {} : {
@@ -99,7 +99,7 @@
                       } %>
           <%= f.association :user, collection: current_university.users.ordered if can?(:manage, User) %>
       <% end %>
-      <%= panel title: University::Person.human_attribute_name('picture') do %>
+      <%= osuny_panel title: University::Person.human_attribute_name('picture') do %>
         <%= f.input :picture,
                     as: :single_deletable_file,
                     label: false,
diff --git a/app/views/admin/university/people/_main_infos.html.erb b/app/views/admin/university/people/_main_infos.html.erb
index 2569690dd47f0843115ed87cdf2167642e3a578a..232c4447b912c1a3921127e6f3b8a4d12a41cde7 100644
--- a/app/views/admin/university/people/_main_infos.html.erb
+++ b/app/views/admin/university/people/_main_infos.html.erb
@@ -1,7 +1,7 @@
 <div class="row">
   <div class="col-md-8 col-xl-9">
     <%= render 'admin/application/summary/show', about: person %>
-    <%= panel title: t('content') do %>
+    <%= osuny_panel title: t('content') do %>
       <div class="row pure__row--small">
         <% unless person.gender.blank? %>
           <div class="col-md-6">
@@ -44,7 +44,7 @@
       <% end %>
     <% end %>
     
-    <%= panel title: University::Person.human_attribute_name('socials') do %>
+    <%= osuny_panel title: University::Person.human_attribute_name('socials') do %>
       <% unless person.url.blank? %>
         <h3 class="h5"><%= University::Person.human_attribute_name('url') %></h3>
         <p><%= link_to person.url, person.url, target: '_blank' %></p>
@@ -66,7 +66,7 @@
     <%= render 'admin/communication/blocks/list', about: person %>
   </div>
   <div class="col-md-4 col-xl-3">
-    <%= panel title: t('metadata') do %>
+    <%= osuny_panel title: t('metadata') do %>
         <h3 class="h5"><%= University::Person.human_attribute_name('slug') %></h3>
         <p><%= person.slug %></p>
         <% if person.user.present? %>
@@ -74,7 +74,7 @@
           <p><%= link_to_if can?(:read, person.user), person.user, admin_user_path(person.user) %></p>
         <% end %>
     <% end %>
-    <%= panel title: t('activerecord.attributes.university/person.picture') do %>
+    <%= osuny_panel title: t('activerecord.attributes.university/person.picture') do %>
       <% if person.best_picture_inherits_from_user? %>
         <p>
           <span class="small text-muted">
diff --git a/app/views/admin/university/people/show/_roles.html.erb b/app/views/admin/university/people/show/_roles.html.erb
index b59e6e48c00b33c1089bd9e8193c384dbba53fa5..b66620b965be1b91529d9d3bee19f671a4123931 100644
--- a/app/views/admin/university/people/show/_roles.html.erb
+++ b/app/views/admin/university/people/show/_roles.html.erb
@@ -1,5 +1,5 @@
 <% if involvements.total_count > 0 %>
-  <%= panel title: t('university.person.administrator_roles'),
+  <%= osuny_panel title: t('university.person.administrator_roles'),
             subtitle: "#{involvements.total_count} #{t('university.person.administrator_roles').downcase}" do %>
     <div class="table-responsive">
       <table class="<%= table_classes %>">