Skip to content

Instantly share code, notes, and snippets.

@cgibsonmm
Created March 30, 2017 20:32
Show Gist options
  • Save cgibsonmm/0473c2372002756473528840c92228df to your computer and use it in GitHub Desktop.
Save cgibsonmm/0473c2372002756473528840c92228df to your computer and use it in GitHub Desktop.
Trying to return list of events on a calendar, but not getting any thing returned to the view
#event_controller.rb
class EventsController < ApplicationController
def index
@events = Event.all
@events_by_date = @events.group_by(&:date)
end
end
______________________________________________________
# index.html.erb
<%= calendar do |date| %>
<%= date.day %>
<% if @events_by_date[date] %>
<ul>
<% @events_by_date[date].each do |event| %>
<li><%= event.title %></li>
<% end %>
</ul>
<% end %>
<% end %>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment