mirror of
https://github.com/openSUSE/osem.git
synced 2026-08-13 19:54:02 +00:00
Add confirmed and cfp_active scopes to Track Render markdown in track's description Make the views more similar to the proposal/events views Change the sequence of columns in admin/Tracks#index Remove the short_name column from the index views Add button "My Tracks" in the user menu Fix track count in proposals Add details of track in admin/Tracks#show Use tabs to show track details and events
57 lines
2 KiB
Text
57 lines
2 KiB
Text
.container
|
|
.row
|
|
.col-md-12
|
|
%h2.text-center
|
|
Program
|
|
%p.lead.text-center
|
|
%span.notranslate
|
|
= @conference.short_title
|
|
has the most awesome program ever!
|
|
- if @conference.splashpage and @conference.program.tracks.any? and @conference.splashpage.include_tracks
|
|
See rock-star speakers cover the topics of
|
|
- if @conference.splashpage and @conference.splashpage.include_tracks
|
|
- @conference.program.tracks.confirmed.cfp_active.each_slice(3) do |slice|
|
|
.row.row-centered
|
|
- slice.each do |track|
|
|
.col-md-4.col-sm-4.col-centered.col-top.track
|
|
%h4.text-center
|
|
= track.name
|
|
= markdown(track.description)
|
|
- if track.start_date
|
|
%br
|
|
From: #{track.start_date.strftime('%A, %B %-d. %Y')}
|
|
- if track.end_date
|
|
%br
|
|
To: #{track.end_date.strftime('%A, %B %-d. %Y')}
|
|
- if track.room
|
|
%br
|
|
In: #{track.room.name}
|
|
|
|
- if @conference.program and @conference.program.schedule_public
|
|
.row
|
|
.col-md-12
|
|
%p.cta-button.text-center
|
|
= link_to(conference_schedule_path(@conference.short_title), class: 'btn btn-default btn-lg') do
|
|
Full Schedule
|
|
|
|
|
|
%h3.text-center
|
|
Don't miss out!
|
|
%br
|
|
- if @conference.program.events.highlights.any?
|
|
.row
|
|
.col-md-12
|
|
- @conference.program.events.highlights.each_slice(2) do |slice|
|
|
.row.row-centered
|
|
- slice.each do |event|
|
|
.col-md-6.col-centered.col-top.highlights
|
|
%p.text-center
|
|
%b= event.title
|
|
%h5.text-center
|
|
= markdown truncate(event.abstract, length: 500, separator: ' ')
|
|
= link_to "Read More", conference_program_proposal_path(@conference.short_title, event)
|
|
|
|
= content_for :splash_nav do
|
|
%li
|
|
=link_to('#program', class: 'smoothscroll') do
|
|
Program
|