From 0aa4e435766525a9654de801f7dc196688d76fc2 Mon Sep 17 00:00:00 2001 From: Arnaud Levy <contact@arnaudlevy.com> Date: Thu, 26 Jan 2023 14:45:55 +0100 Subject: [PATCH] Fix #768 --- app/views/admin/university/alumni/show.html.erb | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/app/views/admin/university/alumni/show.html.erb b/app/views/admin/university/alumni/show.html.erb index 951bcd335..d5723d063 100644 --- a/app/views/admin/university/alumni/show.html.erb +++ b/app/views/admin/university/alumni/show.html.erb @@ -8,7 +8,7 @@ action += link_to t('university.manage_cohorts'), cohorts_admin_university_alumnus_path(@alumnus), class: button_classes if can?(:update, @alumnus) %> -<%= osuny_panel title:Education::Cohort.model_name.human(count: 2), action: action do %> +<%= osuny_panel Education::Cohort.model_name.human(count: 2), action: action do %> <%= render 'admin/education/cohorts/list', cohorts: @alumnus.cohorts.ordered %> <% end %> @@ -18,7 +18,7 @@ action += link_to t('university.manage_experiences'), experiences_admin_university_alumnus_path(@alumnus), class: button_classes if can?(:update, @alumnus) %> -<%= osuny_panel title:University::Person::Experience.model_name.human(count: 2), action: action do %> +<%= osuny_panel University::Person::Experience.model_name.human(count: 2), action: action do %> <%= render 'admin/university/people/experiences/list', experiences: @alumnus.experiences.ordered %> <% end %> -- GitLab