mirror of
https://github.com/openSUSE/osem.git
synced 2026-08-16 13:14:03 +00:00
* Get rid of the timezones in the schedule, need to deal with that on output * Skip auth token verfiy on schedule updates * Make it possible to withdraw confirmed submissions * Show if people are not registerd
34 lines
731 B
Text
34 lines
731 B
Text
%h2
|
|
People
|
|
- if @people
|
|
= "(#{@people.length})"
|
|
.well
|
|
%table.table.table-striped.table-bordered.table-hover#people
|
|
%thead
|
|
%th
|
|
%b Email
|
|
%th
|
|
%b Last Name
|
|
%th
|
|
%b First Name
|
|
%th
|
|
%b Public Name
|
|
%th
|
|
%b # of Conference Registrations
|
|
%th
|
|
- @people.each do |person|
|
|
%tr
|
|
%td= person.email
|
|
%td= person.last_name
|
|
%td= person.first_name
|
|
%td= person.public_name
|
|
%td= person.registrations.count
|
|
%td= link_to "View", admin_person_path(person)
|
|
|
|
:javascript
|
|
$(document).ready(function() {
|
|
$('#people').dataTable( {
|
|
"bPaginate": false,
|
|
"bLengthChange": false
|
|
} );
|
|
} );
|