Sha256: d948900303229e919bca585ed5be3a001dc8425bf1ea28baebdec06c1feabcac

Contents?: true

Size: 555 Bytes

Versions: 2

Compression:

Stored size: 555 Bytes

Contents

%h3 Upcoming Shows
- if upcoming.empty?
  %p There are no upcoming shows.
- else
  %ul.detailed-list#of_shows
    - upcoming.each do |show|
      %li
        %h4= link_to (l show.datetime_local_to_event, :format => :short), event_show_path(event, show), :title => 'show-datetime'
        %ul.controls
          %li= link_to "Edit", edit_event_show_path(event, show) if can?(:edit, show)
          %li= link_to "Delete", event_show_path(event, show), :confirm => "Are you sure you want to delete #{event.name}?", :method => :delete if can?(:destroy, show)

Version data entries

2 entries across 2 versions & 1 rubygems

Version Path
artfully_ose-1.0.0.rc4 app/views/shows/_upcoming.html.haml
artfully_ose-1.0.0.rc3 app/views/shows/_upcoming.html.haml