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.
54 lines
1.1 KiB
54 lines
1.1 KiB
%p#notice= notice |
|
|
|
#lug-list |
|
%h1=t '.lug-list' |
|
%ul |
|
- @event.region.lugs.order(department: :asc).each do |lug| |
|
%li |
|
= link_to lug.name, lug.url |
|
(#{lug.department}) |
|
|
|
%h1 Actions |
|
= link_to t('.add_to_calendar'), root_url |
|
|
|
%h2 |
|
%em |
|
= @event.city |
|
\: |
|
= @event.title |
|
|
|
%h3 |
|
Date et lieu |
|
|
|
%p |
|
- if @event.same_day? |
|
Le #{l @event.start_time.to_date, format: :long}, |
|
de #{l @event.start_time, format: :hours} à #{l @event.end_time, format: :hours}.</p> |
|
- else |
|
Du |
|
=l @event.start_time, format: :at |
|
au |
|
#{l @event.end_time, format: :at}. |
|
|
|
%p |
|
À |
|
%em |
|
= link_to(@event.city, "http://fr.wikipedia.org/wiki/#{@event.city}") + ',' |
|
= link_to @event.region.name, "http://fr.wikipedia.org/wiki/#{@event.region.name}" |
|
|
|
%h3 Description |
|
=raw @event.description |
|
|
|
%h3 Informations |
|
%p |
|
Site Web: |
|
= link_to @event.url, @event.url |
|
%p |
|
Contact: |
|
= mail_to @event.contact.gsub('@', ' CHEZ ').gsub('.', ' POINT '), @event.contact.gsub('@', ' CHEZ ').gsub('.', ' POINT ') |
|
|
|
- if (@event.tags && @event.tags.present?) |
|
%p |
|
Tags: |
|
- @event.tags.split.each do |tag| |
|
= link_to tag, events_url(tag: tag)
|
|
|