osem-fcy/app/views/admin/people/index.html.haml

33 lines
664 B
Text
Raw Normal View History

%h2
People
- if @people
= "(#{@people.length})"
%table.table.table-striped.table-bordered.table-hover#people
2013-01-07 09:04:09 +01:00
%thead
%th
%b Email
2013-01-07 09:04:09 +01:00
%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
2013-01-07 09:04:09 +01:00
%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( {
sPaginationType: "full_numbers"
} );
} );