osem-fcy/app/views/admin/users/_event_registrations.html.haml

26 lines
849 B
Text
Raw Normal View History

2016-04-22 18:18:46 +03:00
.row
.col-md-12.page-header
%h2
Registrations to Events
.col-md-12
.well
%table.datatable#event_registrations
2016-04-22 18:18:46 +03:00
%thead
%th ID
%th Conference
%th Title
%th Attended
%tbody
- @user.events_registrations.each do |event_registration|
- event = event_registration.event
%tr
%td= event.id
%td= link_to event.program.conference.short_title, admin_conference_path(event.program.conference.short_title)
%td= link_to event.title, admin_conference_program_event_path(event.program.conference.short_title, event)
%td
- if @user.attended_event?(event)
2022-05-18 06:31:12 +02:00
%i.fa-solid.fa-check.text-success
2016-04-22 18:18:46 +03:00
- else
2022-05-18 06:31:12 +02:00
%i.fa-solid.fa-xmark.text-danger