A calendar management project, for events and activities related to communities fighting for freedoms.
This can be related to software, art, data, hardware, content, commons, internet.
https://www.agendadulibre.org
This can be related to software, art, data, hardware, content, commons, internet.
https://www.agendadulibre.org
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
34 lines
1008 B
34 lines
1008 B
-# Choose a region to filter events with |
|
%ul.regions |
|
- if params[:near].present? && params[:near][:location].present? |
|
%li.selected |
|
%a(href="?near=") |
|
%em.fa.fa-map-pin |
|
= params[:near][:location] |
|
- if params[:near][:distance].present? |
|
%em.fa.fa-arrows-alt-h |
|
= params[:near][:distance] |
|
km |
|
%em.fa.fa-times |
|
|
|
- else |
|
%li#near-me |
|
%a.near-me(href="?near[distance]=1&near[location]=[me]") |
|
%em.fa.fa-street-view |
|
= t '.nearMe' |
|
|
|
%ul.near-me |
|
%li |
|
%a.near-me(href="?near[distance]=10&near[location]=[me]") |
|
%em.fa.fa-arrows-alt-h |
|
10km |
|
%li |
|
%a.near-me(href="?near[distance]=100&near[location]=[me]") |
|
%em.fa.fa-arrows-alt-h |
|
100km |
|
%li |
|
%a.near-me(href="?near[distance]=1000&near[location]=[me]") |
|
%em.fa.fa-arrows-alt-h |
|
1000km |
|
|
|
= render partial: '/regions/filter_region', collection: Region.top
|
|
|