agenda-libre-ruby/app/views/regions/index.html.haml

27 lines
1.1 KiB
Plaintext
Raw Normal View History

%h2
%em.fa.fa-rss
= title t '.title'
2014-01-02 00:21:49 +01:00
%p=t '.quick'
2014-01-02 00:21:49 +01:00
%table.list
%thead
2014-01-02 00:21:49 +01:00
%tr
2014-10-31 14:24:40 +01:00
%th= link_to t(:all, scope: 'activerecord.attributes.region.name_values'), root_path
%th= link_to 'RSS', events_path(format: :rss, region: :all)
%th= link_to :webcal, events_path(protocol: :webcal, format: :ics, region: :all, only_path: false)
%th= link_to :iCal, events_path(format: :ics, region: :all, only_path: false)
2014-10-31 14:24:40 +01:00
%th= link_to :GeoJSON, maps_path(format: :json, region: :all, only_path: false)
2014-01-02 00:21:49 +01:00
%tbody
2014-08-25 17:55:14 +02:00
- @regions.find_each do |region|
%tr
2014-10-31 14:24:40 +01:00
%td= link_to region.name, events_path(region: region.id)
%td= link_to 'RSS', events_path(format: :rss, region: region.id)
%td= link_to :webcal, events_path(protocol: :webcal, format: :ics, region: region.id, only_path: false)
%td= link_to :iCal, events_path(format: :ics, region: region.id, only_path: false)
2014-10-31 14:24:40 +01:00
%td= link_to :GeoJSON, maps_path(format: :json, region: region.id, only_path: false)
2014-01-02 00:21:49 +01:00
:markdown
#{t '.help', tag: events_path(format: :rss, tag: 'toulibre', only_path: false), daylimit: events_path(format: :ics, daylimit: '42', only_path: false)}