2019-09-06 11:58:11 +02:00
|
|
|
extends ../layout.pug
|
|
|
|
block content
|
|
|
|
h3 #{event.title}
|
2019-10-02 21:05:15 +02:00
|
|
|
p 📍 Dove: #{event.place.name} - #{event.place.address}
|
|
|
|
p ⏰ Quando: #{datetime(event.start_datetime)}
|
2019-09-06 11:58:11 +02:00
|
|
|
br
|
2021-07-15 16:18:56 +02:00
|
|
|
if event.media
|
2019-09-06 11:58:11 +02:00
|
|
|
<center>
|
2021-07-15 16:18:56 +02:00
|
|
|
<img style="height: 89vh; margin: 0 auto;" alt="#{event.media[0].name}" src="#{config.baseurl}/media/#{event.media[0].url}" />
|
2019-09-06 11:58:11 +02:00
|
|
|
</center>
|
2020-05-22 00:30:45 +02:00
|
|
|
p !{event.description}
|
2019-05-30 12:12:51 +02:00
|
|
|
|
2019-09-06 11:58:11 +02:00
|
|
|
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
|
2019-10-02 21:05:15 +02:00
|
|
|
p Puoi confermare questo evento premendo il tasto conferma a <a href="#{config.baseurl}/event/#{event.id}">questa pagina</a>
|
2019-09-06 11:58:11 +02:00
|
|
|
else
|
|
|
|
p Puoi eliminare queste notifiche <a href="#{config.baseurl}/del_notification/#{notification.remove_code}">qui</a>
|