Sha256: 93ed4ea7978bbe5b99628120879889b582f4b95a4651c63ac3e4078f9492fbe6

Contents?: true

Size: 1009 Bytes

Versions: 4

Compression:

Stored size: 1009 Bytes

Contents

- no_date ||= false

- if event
  - event_master_id = event.master_id || event.id
  - repeating = true if @seen_events[event_master_id]
  - @seen_events[event_master_id] = true;
  - cssclass = event.calendar ? "event #{event.calendar.slug}" : "event"

  %div{:class => cssclass}
    - unless no_date
      .datemark
        .mon= event.short_month
        .dom= event.mday_padded
    .summary
      %h2
        - if event.url
          = link_to event.title, event.url, :class => 'title'
        - else
          = event.title
        = event.keywords
          
      %p.practicalities
        = event.summarize_start
        - if event.event_venue
          at
          - if event.event_venue.url
            = link_to event.event_venue.title, event.event_venue.url, :class => 'location'
          - else
            = event.event_venue.title
          = event.event_venue.address
        - elsif event.location
          = event.location
      - unless repeating
        = event.description_paragraph
    

Version data entries

4 entries across 4 versions & 1 rubygems

Version Path
radiant-event_calendar-extension-1.3.2 app/views/events/_event.html.haml
radiant-event_calendar-extension-1.3.1 app/views/events/_event.html.haml
radiant-event_calendar-extension-1.3.0 app/views/events/_event.html.haml
radiant-event_calendar-extension-1.1.2 app/views/events/_event.html.haml