<%= link_to translated_attribute(debate.title), resource_locator(debate).path, target: :blank %>
|
<% if debate.start_time %>
<%= l debate.start_time, format: :long %>
<% end %>
|
<% if debate.end_time %>
<%= l debate.end_time, format: :long %>
<% end %>
|
<% if allowed_to? :update, :debate, debate: debate %>
<%= icon_link_to "pencil", edit_debate_path(debate), t("actions.edit", scope: "decidim.debates"), class: "action-icon--edit" %>
<% end %>
<% if allowed_to? :delete, :debate, debate: debate %>
<%= icon_link_to "circle-x", debate_path(debate), t("actions.destroy", scope: "decidim.debates"), method: :delete, class: "action-icon--remove", data: { confirm: t("actions.confirm_destroy", scope: "decidim.debates") } %>
<% end %>
|
<% end %>