I am creating a calendar view based on this Railscast tutorial. In the tutorial, the :published_on field is a date field. My question is, if :published_on were a datetime field instead of a date field, how would I adjust the code below to make it work?
Migration
t.date :published_on
Controller:
def index
@articles = Article.all
@articles_by_date = @articles.group_by(&:published_on)
@date = params[:date] ? Date.parse(params[:date]) : Date.today
end
View:
<div id="articles">
<h2 id="month">
<%= link_to "<", date: @date.prev_month %>
<%= @date.strftime("%B %Y") %>
<%= link_to ">", date: @date.next_month %>
</h2>
<%= calendar @date do |date| %>
<%= date.day %>
<% if @articles_by_date[date] %>
<ul>
<% @articles_by_date[date].each do |article| %>
<li><%= link_to article.name, article %></li>
<% end %>
</ul>
<% end %>
<% end %>
</div>
@date = params[:date] ? DateTime.parse(params[:date]) : DateTime.todaywork? – grilix Aug 15 '12 at 12:58undefined methodtoday' for DateTime:Class` error. @Christoph - There is no error without adjustments, but it doesn't display any data in the calendar. However, if I change it to a date field, it correctly displays the data. – diasks2 Aug 15 '12 at 13:10DateTime.now? – grilix Aug 15 '12 at 13:41DateTime.nowdoesn't return an error, but it doesn't output anything on the calendar. – diasks2 Aug 15 '12 at 14:12