mirror of
https://github.com/openSUSE/osem.git
synced 2026-08-14 20:24:03 +00:00
* Consistent route/model/controller/view layout * Get rid of unused photos, speakers, dietchoices, social_events controllers * Drop unused :public from Rooms and :description from CallForPapers
31 lines
725 B
Text
31 lines
725 B
Text
.row
|
|
.col-md-12
|
|
.page-header
|
|
%h1
|
|
= @track.name
|
|
Track
|
|
%p.text-muted
|
|
Events in this track
|
|
.row
|
|
.col-md-12
|
|
%table.table.table-hover.datatable
|
|
%thead
|
|
%th Title
|
|
%th Type
|
|
%th Submitter
|
|
%th State
|
|
%th Time
|
|
%tbody
|
|
- @track.events.each_with_index do |event|
|
|
%tr
|
|
%td
|
|
=link_to event.title, admin_conference_event_path(@conference.short_title, event)
|
|
%td
|
|
= event.event_type.title
|
|
%td
|
|
=link_to event.submitter.name, admin_user_path(event.submitter)
|
|
%td
|
|
= event.state
|
|
%td
|
|
= event.start_time
|
|
|