2019-05-30 12:12:51 +02:00
|
|
|
h3 #{event.title}
|
|
|
|
p Dove: #{event.place.name} - #{event.place.address}
|
2019-07-13 01:02:11 +02:00
|
|
|
p Quando: #{datetime(event.start_datetime)}
|
2019-05-30 12:12:51 +02:00
|
|
|
br
|
|
|
|
if event.image_path
|
2019-07-11 22:29:18 +02:00
|
|
|
<center>
|
|
|
|
<img style="height: 89vh; margin: 0 auto;" src="#{config.baseurl}/media/#{event.image_path}" />
|
|
|
|
</center>
|
2019-05-30 12:12:51 +02:00
|
|
|
p #{event.description}
|
|
|
|
|
|
|
|
each tag in event.tags
|
|
|
|
span ##{tag.tag}
|
|
|
|
br
|
|
|
|
<a href="#{config.baseurl}/event/#{event.id}">#{config.baseurl}/event/#{event.id}</a>
|
|
|
|
hr
|
|
|
|
if to_confirm
|
|
|
|
p Puoi confermare questo evento <a href="#{config.baseurl}/admin/confirm/#{event.id}">qui</a>
|
|
|
|
else
|
|
|
|
p Puoi eliminare queste notifiche <a href="#{config.baseurl}/del_notification/#{notification.remove_code}">qui</a>
|
2019-06-11 23:53:16 +02:00
|
|
|
|
|
|
|
hr
|
2019-06-26 14:44:21 +02:00
|
|
|
<a href="#{config.baseurl}">#{config.title} - #{config.description}</a>
|