<%= start_time.to_s(:time) %> - <%= end_time.to_s(:time) %>
<%= link_to decidim_sanitize(present(meeting).title), resource_locator(meeting).path %>
<% attribute = present(meeting).description %>
<% conference_meeting = meeting.becomes(Decidim::ConferenceMeeting) %> <% speakers = conference_meeting.conference_speakers %> <% if speakers.any? %>
<%= t(".speakers") %>
<%= cell("decidim/conferences/conference_speaker", meeting, list: speakers, size: 3).(:speakers_list) %>
<% end %>
<%= t(".location") %>
<% if meeting.respond_to? :location %> <%= translated_attribute meeting.location %>  <% end %> <%= meeting.address %> <% if meeting.respond_to? :location_hints %>  <%= translated_attribute meeting.location_hints %> <% end %>
<% if meeting.description.present? %>
<%= t(".content") %>
<%= decidim_sanitize_editor(present(meeting).description(links: true)) %>
<% end %> <% if meeting.closing_visible? && (meeting.video_url.presence || meeting.audio_url.presence) %>
<%= t(".streaming") %>
<% if meeting.video_url.presence %> <%= link_to meeting.video_url, meeting.video_url, target: "_blank" %> <% end %> <% if meeting.audio_url.presence %> <%= link_to meeting.audio_url, meeting.audio_url, target: "_blank" %> <% end %>
<% end %>