Sha256: 77d08701262ff952bb0b2ea23e631dce63176f90b274df44a6a0e68846b6c37d

Contents?: true

Size: 401 Bytes

Versions: 3

Compression:

Stored size: 401 Bytes

Contents

%h1 Listing calendars

%table
  %tr
    %th Name
    %th Ical
    %th
    %th

  - @calendars.each do |calendar|
    %tr
      %td= calendar.name
      %td= calendar.ical
      %td= link_to 'Show', calendar
      %td= link_to 'Edit', edit_calendar_path(calendar)
      %td= link_to 'Destroy', calendar, :confirm => 'Are you sure?', :method => :delete

%br

= link_to 'New calendar', new_calendar_path

Version data entries

3 entries across 3 versions & 1 rubygems

Version Path
actic-0.0.5.1 lib/app/views/calendars/index.html.haml
actic-0.0.5 lib/app/views/calendars/index.html.haml
actic-0.0.4 lib/app/views/calendars/index.html.haml