Skip to content
Snippets Groups Projects
Unverified Commit 7366b984 authored by Sébastien Gaya's avatar Sébastien Gaya
Browse files

fix

parent 42264d13
No related branches found
No related tags found
No related merge requests found
...@@ -3,7 +3,7 @@ class Admin::Education::Program::RolesController < Admin::Education::Program::Ap ...@@ -3,7 +3,7 @@ class Admin::Education::Program::RolesController < Admin::Education::Program::Ap
include Admin::Reorderable include Admin::Reorderable
before_action :load_people, only: [:new, :edit, :create, :update] before_action :load_administration_people, only: [:new, :edit, :create, :update]
def index def index
@roles = @roles.ordered @roles = @roles.ordered
...@@ -69,7 +69,7 @@ class Admin::Education::Program::RolesController < Admin::Education::Program::Ap ...@@ -69,7 +69,7 @@ class Admin::Education::Program::RolesController < Admin::Education::Program::Ap
University::Role University::Role
end end
def load_people def load_administration_people
@people = current_university.people.accessible_by(current_ability).ordered @administration_people = current_university.people.administration.accessible_by(current_ability).ordered
end end
end end
...@@ -6,7 +6,7 @@ ...@@ -6,7 +6,7 @@
<i class="fa fa-bars handle"></i> <i class="fa fa-bars handle"></i>
</div> </div>
<div class="col-9"> <div class="col-9">
<%= f.association :person, collection: @people, label: false, include_blank: :translate, wrapper: false, required: true %> <%= f.association :person, collection: @administration_people, label: false, include_blank: :translate, wrapper: false, required: true %>
</div> </div>
<div class="col-2"> <div class="col-2">
<%= link_to_remove_association '<i class="fas fa-trash"></i>'.html_safe, f, class: 'btn btn-sm btn-danger' %> <%= link_to_remove_association '<i class="fas fa-trash"></i>'.html_safe, f, class: 'btn btn-sm btn-danger' %>
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment