我正努力将日历输入我的轨道3.2 app. I found this great trailscast 解释一个插件,这个插件正是我需要的。然而,我需要从多个模型中提取数据,而不仅仅是一个模型。有人知道这个解决方案吗?
即:我有不同的生日、周年纪念日、假日表,
谢谢!
https://github.com/watu/table_buildinger" rel=“no follow'>https://github.com/watu/table_buildinger
用户/show.html.erb
<div id="calendar">
<h2 id="month">
<%= link_to "<", :month => (@date.beginning_of_month-1).strftime("%Y-%m") %>
<%=h @date.strftime("%B %Y") %>
<%= link_to ">", :month => (@date.end_of_month+1).strftime("%Y-%m") %>
</h2>
<%= calendar_for @friends, :year => @date.year, :month => @date.month do |calendar| %>
<%= calendar.head( mon , tue , wed , thu , fri , sat , sun ) %>
<%= calendar.day(:day_method => :dob) do |date, friends| %>
<%= date.day %>
<ul>
<% friends.each do |friend| %>
<li> <%= h(friend.name) %><%= " s birthday"%></li>
<% %>
<% end %>
</ul>
<% end %>
<% end %>
</div>