You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
18 lines
434 B
18 lines
434 B
2 years ago
|
- content_for :page_title do
|
||
|
= t('admin.roles.title')
|
||
|
|
||
|
- content_for :heading_actions do
|
||
|
= link_to t('admin.roles.add_new'), new_admin_role_path, class: 'button' if can?(:create, :user_role)
|
||
|
|
||
|
%p= t('admin.roles.description_html')
|
||
|
|
||
|
%hr.spacer/
|
||
|
|
||
|
.applications-list
|
||
|
= render partial: 'role', collection: @roles.select(&:everyone?)
|
||
|
|
||
|
%hr.spacer/
|
||
|
|
||
|
.applications-list
|
||
|
= render partial: 'role', collection: @roles.reject(&:everyone?)
|