Events

<%= link_to new_event_path, class: 'action_button' do %> <%= icon("plus", library: "tabler", "aria-hidden": true) %> Create event <% end %> <%= link_to 'View events without a page →', without_node_events_path %>
<%= will_paginate @events %> <% @events.each do |event| %> <% end %>
Title Start time End time Rrule Allday Url Node
<%= link_to event.display_title, event %> <%=h event.start_time %> <%=h event.end_time %> <%= rrule_with_break_opportunities(event.rrule) %> <%=h event.allday %> <% if event.url.present? %> <%= link_to event.url, event.url %> <% end %> <%= event.node ? link_to(event.node_id, node_path(event.node)) : '' %> <%= link_to 'edit', edit_event_path(event) %>