Sha256: 94c4687a9015a20c34135588e90b32000c4e72b0d80cc39a60b82a208a527dae
Contents?: true
Size: 1 KB
Versions: 2
Compression:
Stored size: 1 KB
Contents
<div class="simple-calendar"> <%= link_to "Previous", start_date: date_range.first - 1.day %> Week <%= start_date.strftime("%U").to_i %> <%= link_to "Next", start_date: date_range.last + 1.day %> <table class="table table-striped"> <thead> <tr> <% date_range.slice(0, 7).each do |day| %> <th><%= I18n.t("date.abbr_day_names")[day.wday] %></th> <% end %> </tr> </thead> <tbody> <% date_range.each_slice(7) do |week| %> <tr> <% week.each do |day| %> <%= content_tag :td, class: calendar.td_classes_for(day) do %> <% if defined?(Haml) && block_is_haml?(block) %> <% capture_haml do %> <% block.call day, sorted_events.fetch(day, []) %> <% end %> <% else %> <% block.call day, sorted_events.fetch(day, []) %> <% end %> <% end %> <% end %> </tr> <% end %> </tbody> </table> </div>
Version data entries
2 entries across 2 versions & 1 rubygems
Version | Path |
---|---|
simple_calendar-2.0.3 | app/views/simple_calendar/_week_calendar.html.erb |
simple_calendar-2.0.2 | app/views/simple_calendar/_week_calendar.html.erb |