| <%= poll.name %> |
<%= l poll.starts_at, format: :short_datetime %> |
<%= l poll.ends_at, format: :short_datetime %> |
<% if feature?(:sdg) %>
<%= poll.sdg_goal_list %> |
<%= poll.sdg_target_list %> |
<% end %>
<%= render Admin::TableActionsComponent.new(
poll,
destroy_confirmation: t("admin.polls.destroy.alert")
) do |actions| %>
<%= actions.action(:configure) %>
<% end %>
|