Listing recurring events

<% @recurring_events.each do |recurring_event| %> <% end %>
Day of the week Time
<%=h wday_to_s(recurring_event.wday) %> <%=h recurring_event.time.strftime("%H:%M") %> <%= link_to 'Edit', edit_recurring_event_path(recurring_event) %> <%= link_to 'Destroy', recurring_event, data: {confirm: "Are you sure?"}, :method => :delete %>
<%= link_to 'Add', new_recurring_event_path %>
Go to <%= link_to 'Dashboard', root_path %>, <%= link_to 'Events', events_path %>