agenda-libre-ruby/app/views/events/show.html.haml

54 lines
1.4 KiB
Plaintext
Raw Normal View History

2014-02-18 09:28:04 +01:00
- if request.format == 'text/html' && controller.controller_name != 'moderations' && controller.controller_name != 'notes'
#lug-list
%h1=t '.lug-list'
- if @event.region
%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
2013-12-29 23:25:38 +01:00
%h2
%em= @event.city + ':'
2013-12-28 23:45:13 +01:00
= @event.title
2013-12-29 23:25:38 +01:00
%h3 Date et lieu
2013-12-29 23:25:38 +01:00
2013-12-28 23:45:13 +01:00
%p
2013-12-29 23:25:38 +01:00
- 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}.
2013-12-29 23:25:38 +01:00
- else
Du
=l @event.start_time, format: :at
au
#{l @event.end_time, format: :at}.
2013-12-28 23:45:13 +01:00
%p
2013-12-29 23:25:38 +01:00
À
%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}" rescue nil
2013-12-29 23:25:38 +01:00
%h3 Description
= sanitize @event.description,
tags: %w(p br table tr td ul ol li a strong b em i img),
attributes: %w(href src width height)
2013-12-29 23:25:38 +01:00
%h3 Informations
2013-12-28 23:45:13 +01:00
%p
2013-12-29 23:25:38 +01:00
Site Web:
= link_to @event.url, @event.url
2013-12-28 23:45:13 +01:00
%p
2013-12-29 23:25:38 +01:00
Contact:
= mail_to @event.contact.gsub('@', ' CHEZ ').gsub('.', ' POINT '),
@event.contact.gsub('@', ' CHEZ ').gsub('.', ' POINT ')
2013-12-28 23:45:13 +01:00
2013-12-29 23:25:38 +01:00
- if (@event.tags && @event.tags.present?)
%p.tags
2013-12-29 23:25:38 +01:00
Tags:
- @event.tags.split.each do |tag|
= link_to tag, events_url(tag: tag)