<%= t(".title") %> <%= link_to t("actions.new", scope: "decidim.meetings", name: t("models.meeting.name", scope: "decidim.meetings.admin")), new_meeting_path, class: 'button tiny button--title' if can? :manage, current_feature %>

<% if Decidim.geocoder.present? %> <% end %> <% meetings.each do |meeting| %> <% if Decidim.geocoder.present? %> <% end %> <% end %>
<%= t("models.meeting.fields.title", scope: "decidim.meetings") %> <%= t("models.meeting.fields.start_time", scope: "decidim.meetings") %> <%= t("models.meeting.fields.end_time", scope: "decidim.meetings") %> <%= t("models.meeting.fields.closed", scope: "decidim.meetings") %><%= t("models.meeting.fields.map", scope: "decidim.meetings") %><%= t("actions.title", scope: "decidim.meetings") %>
<%= translated_attribute(meeting.title) %>
<% if meeting.start_time %> <%= l meeting.start_time, format: :long %> <% end%> <% if meeting.end_time %> <%= l meeting.end_time, format: :long %> <% end%> <%= humanize_boolean meeting.closed? %> <%= static_map_link(meeting) %> <%= icon_link_to "eye", resource_locator(meeting).path, t("actions.preview", scope: "decidim.meetings"), class: "action-icon--preview", target: :blank %> <% if can? :update, current_feature %> <%= icon_link_to "pencil", edit_meeting_path(meeting), t("actions.edit", scope: "decidim.meetings"), class: "action-icon--edit" %> <%= icon_link_to "people", edit_meeting_registrations_path(meeting), t("actions.registrations", scope: "decidim.meetings"), class: "action-icon--registrations" %> <% end %> <% if can? :update, current_feature %> <%= icon_link_to "lock-locked", edit_meeting_meeting_close_path(meeting_id: meeting.id, id: meeting.id), t("actions.close", scope: "decidim.meetings"), class: "action-icon--close" %> <% end %> <% if can? :update, current_feature %> <%= icon_link_to "folder", meeting_attachment_collections_path(meeting), t("actions.attachment_collections", scope: "decidim.meetings"), class: "action-icon--attachment_collections" %> <% end %> <% if can? :update, current_feature %> <%= icon_link_to "paperclip", meeting_attachments_path(meeting), t("actions.attachments", scope: "decidim.meetings"), class: "action-icon--attachments" %> <% end %> <% if can? :destroy, current_feature %> <%= icon_link_to "circle-x", meeting_path(meeting), t("actions.destroy", scope: "decidim.meetings"), method: :delete, class: "action-icon--remove", data: { confirm: t("actions.confirm_destroy", scope: "decidim.meetings") } %> <% end %>
<%= paginate meetings, theme: "decidim" %>