mirror of
https://github.com/openSUSE/osem.git
synced 2026-08-13 11:44:02 +00:00
19 lines
668 B
Text
19 lines
668 B
Text
<h1 class="text-center">Program for <%= @conference.title %></h1>
|
|
<% @conference.program.events.confirmed.each do |event| %>
|
|
<div>
|
|
<h3>
|
|
<%= link_to event.title, conference_program_proposal_path(@conference.short_title, event.id) %>
|
|
<br>
|
|
<small>
|
|
<%= event.subtitle %>
|
|
</small>
|
|
</h3>
|
|
<h4>
|
|
presented by <%= event.speaker_names %>
|
|
</h4>
|
|
<p>
|
|
<%= truncate(event.abstract, :length => 400) -%>
|
|
<%= link_to 'more', conference_program_proposal_path(@conference.short_title, event.id) if event.abstract.length > 400 %>
|
|
</p>
|
|
</div>
|
|
<% end %>
|