From 8baf73c5bef750f6d3507abced84b7c6e5c28733 Mon Sep 17 00:00:00 2001 From: pabois <pierreandre.boissinot@noesya.coop> Date: Mon, 16 May 2022 18:10:15 +0200 Subject: [PATCH] fix missed view path --- app/views/admin/education/cohorts/show.html.erb | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/app/views/admin/education/cohorts/show.html.erb b/app/views/admin/education/cohorts/show.html.erb index 804ff183e..db47cd664 100644 --- a/app/views/admin/education/cohorts/show.html.erb +++ b/app/views/admin/education/cohorts/show.html.erb @@ -4,7 +4,7 @@ <div class="row"> <div class="col-md-8"> <div class="card flex-fill w-100"> - + <div class="card-body"> <h3 class="h5"><%= Education::Cohort.human_attribute_name('program') %></h3> <p><%= link_to_if can?(:read, @cohort.program), @cohort.program, [:admin, @cohort.program] %></p> @@ -20,4 +20,4 @@ <h2><%= University::Person::Alumnus.model_name.human(count: 2) %></h2> -<%= render 'admin/university/people/alumni/list', alumni: @cohort.people.ordered %> +<%= render 'admin/university/alumni/list', alumni: @cohort.people.ordered %> -- GitLab