Sha256: dd90ce495a9a96b7462b972e56ad1dae6fb92d6834244f70b0d3f7973b8a09ec

Contents?: true

Size: 608 Bytes

Versions: 1

Compression:

Stored size: 608 Bytes

Contents

.calendar.monthly{ :data => { :'base-date' => calendar.base_date }}
  %h1= t('date.abbr_month_names')[calendar.base_date.month]
  = link_to '', previous_month_path(calendar), :class => 'navigation previous'
  = link_to '', next_month_path(calendar), :class => 'navigation next'
  = link_to '', today_path(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 => 'event_calendar/date', :collection => calendar.dates, :locals => { :calendar => calendar }

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
event_cal-1.0 app/views/event_calendar/_calendar.html.haml