<% if upcoming_meetings.any? %>

<%= decidim_escape_translated(model.name) %> - <%= t("decidim.participatory_spaces.highlighted_meetings.upcoming_meetings") %> <%= t("decidim.participatory_spaces.highlighted_meetings.see_all", count: upcoming_meetings_count) %>

<% upcoming_meetings.includes(:component).each do |meeting| %> <%= card_for meeting, size: :list_item %> <% end %>
<%= link_to( t("decidim.participatory_spaces.highlighted_meetings.see_all", count: upcoming_meetings_count), main_component_path(model), class: "button button--sc hollow button--right" ) %>
<% elsif past_meetings.any? %>

<%= decidim_escape_translated(model.name) %> - <%= t("decidim.participatory_spaces.highlighted_meetings.past_meetings") %> <%= t("decidim.participatory_spaces.highlighted_meetings.see_all", count: past_meetings_count) %>

<% past_meetings.each do |meeting| %> <%= card_for meeting, size: :list_item %> <% end %>
<%= link_to( t("decidim.participatory_spaces.highlighted_meetings.see_all", count: past_meetings_count), main_component_path(model), class: "button button--sc hollow button--right" ) %>
<% end %>