forked from bofh/fetsite
9 lines
265 B
Plaintext
9 lines
265 B
Plaintext
<% unless object.nil? %>
|
|
<%= month_calendar events: object do |date, calentries| %>
|
|
<%= I18n.l(date,format: "%d") %>
|
|
<% calentries.each do |entry| %>
|
|
<div><%= link_to entry.name.to_s, polymorphic_path(entry.object) %></div>
|
|
<% end %>
|
|
<% end %>
|
|
<% end %>
|