Sha256: d7294f15a8b843757391fe75a152be7bf6772eb878f857be6f912bb50e80b59e

Contents?: true

Size: 862 Bytes

Versions: 58

Compression:

Stored size: 862 Bytes

Contents

- date = params[:start_date].presence.try(:to_date) || Date.current

.effective__simple-calendar
  .calendar-heading.d-flex.justify-content-between.align-items-center
    .calendar-arrow
      = link_to t('simple_calendar.previous', default: 'Previous').html_safe, effective_events.events_path(start_date: date - 1.month)

    %span.calendar-title
      = t('date.month_names')[start_date.month]

    .calendar-arrow
      = link_to t('simple_calendar.next', default: 'Next').html_safe, effective_events.events_path(start_date: date + 1.month)

  %table.table.table-sm
    %thead
      %tr
        - date_range.slice(0, 7).each do |day|
          %th= t('date.abbr_day_names')[day.wday]

    %tbody
      - date_range.each_slice(7) do |week|
        %tr
          - week.each do |day|
            = capture_haml(day, sorted_events.fetch(day, []), &passed_block)

Version data entries

58 entries across 58 versions & 1 rubygems

Version Path
effective_events-2.29.1 app/views/simple_calendar/_month_calendar.html.haml
effective_events-2.29.0 app/views/simple_calendar/_month_calendar.html.haml
effective_events-2.28.3 app/views/simple_calendar/_month_calendar.html.haml
effective_events-2.28.2 app/views/simple_calendar/_month_calendar.html.haml
effective_events-2.28.1 app/views/simple_calendar/_month_calendar.html.haml
effective_events-2.28.0 app/views/simple_calendar/_month_calendar.html.haml
effective_events-2.27.0 app/views/simple_calendar/_month_calendar.html.haml
effective_events-2.26.0 app/views/simple_calendar/_month_calendar.html.haml
effective_events-2.25.1 app/views/simple_calendar/_month_calendar.html.haml
effective_events-2.25.0 app/views/simple_calendar/_month_calendar.html.haml
effective_events-0.24.0 app/views/simple_calendar/_month_calendar.html.haml
effective_events-0.23.1 app/views/simple_calendar/_month_calendar.html.haml
effective_events-0.23.0 app/views/simple_calendar/_month_calendar.html.haml
effective_events-0.22.2 app/views/simple_calendar/_month_calendar.html.haml
effective_events-0.22.1 app/views/simple_calendar/_month_calendar.html.haml
effective_events-0.22.0 app/views/simple_calendar/_month_calendar.html.haml
effective_events-0.21.3 app/views/simple_calendar/_month_calendar.html.haml
effective_events-0.21.2 app/views/simple_calendar/_month_calendar.html.haml
effective_events-0.21.1 app/views/simple_calendar/_month_calendar.html.haml
effective_events-0.21.0 app/views/simple_calendar/_month_calendar.html.haml