<%= t(".title") %>

<%= link_to t(".all_events_link"), events_path %> <%= link_to new_event_path, class: 'action_button' do %> <%= icon("plus", library: "tabler", "aria-hidden": true) %> <%= t("events.index.create_event") %> <% end %> <%= will_paginate @events %> <% @events.each do |event| %> <% end %>
<%= t("admin.columns.title") %> <%= Event.human_attribute_name(:start_time) %> <%= Event.human_attribute_name(:end_time) %> <%= Event.human_attribute_name(:allday) %> <%= Event.human_attribute_name(:url) %>
<%= link_to event.display_title, event %> <%=h event.start_time %> <%=h event.end_time %> <%=h event.allday %> → <%= event.allday ? t("admin.common.yes") : t("admin.common.no") %> <%=h event.url %> <%= link_to t("events.index.edit_link"), edit_event_path(event) %>