Files
fetsite/app/views/calendars/_calentries.html.erb
2019-04-01 06:47:49 +02:00

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 %>