Sha256: 1de82d38f26eb6eafd4480747825e9b3250cfe585d488629aede62c6ff3d89af

Contents?: true

Size: 619 Bytes

Versions: 4

Compression:

Stored size: 619 Bytes

Contents

.calendar.monthly{ :data => { :'base-date' => calendar.base_date }}
  %h1= t('date.abbr_month_names')[calendar.base_date.month]
  = link_to '', path_to_previous_month(calendar), :class => 'navigation previous'
  = link_to '', path_to_next_month(calendar), :class => 'navigation next'
  = link_to '', path_to_today(calendar), :class => 'navigation today'
  %ul.dates
    - (calendar.start_on .. calendar.start_on + 6.days).each do |date|
      %li.date.wday_header= t('date.abbr_day_names')[date.wday]
    = render :partial => 'shared/event_cal/date', :collection => calendar.dates, :locals => { :calendar => calendar }

Version data entries

4 entries across 4 versions & 1 rubygems

Version Path
event_cal-2.0.2 app/views/shared/event_cal/_calendar.html.haml
event_cal-2.0.1 app/views/shared/event_cal/_calendar.html.haml
event_cal-2.0.0 app/views/shared/event_cal/_calendar.html.haml
event_cal-1.3.0 app/views/shared/event_cal/_calendar.html.haml