Program for <%= @conference.title %>

<% @conference.events.confirmed.each do |event| %>

<%= link_to event.title, conference_proposal_path(@conference.short_title, event.id) %>
<%= event.subtitle %>

presented by <%= event.speaker_names %>

<%= truncate(event.abstract, :length => 400) -%> <%= link_to 'more', conference_proposal_path(@conference.short_title, event.id) if event.abstract.length > 400 %>

<% end %>