%if (!@today_events || @today_events.empty?) && (!@tomorrow_events || @tomorrow_events.empty?) && (!@coming_events || @coming_events.empty?)%>
<%= "No Coming events" %>
<%else %>
<%if !@today_events.empty?%>
<%= t('event.today') %>
<% @today_events.each do |event| %>
<%if event.start_date.future?%>
<%=show_resume_event(event)%>
<%end%>
<%end %>
<%end %>
<%if !@tomorrow_events.empty?%>
<%= t('event.tomorrow') %>
<% @tomorrow_events.each do |event| %>
<%=show_resume_event(event)%>
<%end %>
<%end %>
<%if !@coming_events.empty?%>
<%= t('event.upcoming.other') %>
<% @coming_events.each do |event| %>
<%=show_resume_event(event)%>
<%end %>
<%end %>
<%end %>