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.
sqm-dashboards/app/views/legacy/users/show.html.haml

20 lines
427 B

%h2.text-center= current_user.email
%br
%br
%br
%h3 Schools
- if current_user.schools.blank?
%p
%strong None Yet
- else
%table{style: 'width: 100%;'}
%tbody
%thead{style: 'font-weight: bold;'}
%th Name
%th{colspan: 2}
- current_user.schools.each do |school|
%tr.school
%td= link_to school.name, school
%td= link_to('Admin', legacy_school_admin_path(school))