.
This commit is contained in:
4
server/emails/confirm/html.pug
Normal file
4
server/emails/confirm/html.pug
Normal file
@@ -0,0 +1,4 @@
|
||||
p= t('confirm_email')
|
||||
|
||||
hr
|
||||
small #{config.baseurl}
|
||||
18
server/emails/event/html.pug
Normal file
18
server/emails/event/html.pug
Normal file
@@ -0,0 +1,18 @@
|
||||
h3 #{event.title}
|
||||
p Dove: #{event.place.name} - #{event.place.address}
|
||||
p Quando: #{datetime(event.start_datetime)}
|
||||
br
|
||||
if event.image_path
|
||||
<img style="width: 100%" src="#{config.apiurl}/uploads/#{event.image_path}" />
|
||||
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>
|
||||
<a href="#{config.baseurl}">#{config.title} - #{config.description}</a>
|
||||
1
server/emails/event/subject.pug
Normal file
1
server/emails/event/subject.pug
Normal file
@@ -0,0 +1 @@
|
||||
= `[${config.title}] ${event.title} @${event.place.name} ${datetime(event.start_datetime)}`
|
||||
8
server/emails/mail.css
Normal file
8
server/emails/mail.css
Normal file
@@ -0,0 +1,8 @@
|
||||
table {
|
||||
width: 100%;
|
||||
border-collapse: collapse;
|
||||
}
|
||||
|
||||
table, th, td {
|
||||
border: 1px solid #555;
|
||||
}
|
||||
3
server/emails/recover/html.pug
Normal file
3
server/emails/recover/html.pug
Normal file
@@ -0,0 +1,3 @@
|
||||
p= t('recover_email')
|
||||
|
||||
<a href="#{config.baseurl}/recover/#{user.recover_code}">#{t('press here')}</a>
|
||||
1
server/emails/recover/subject.pug
Normal file
1
server/emails/recover/subject.pug
Normal file
@@ -0,0 +1 @@
|
||||
= `[Gancio] Richiesta password recovery`
|
||||
6
server/emails/register/html.pug
Normal file
6
server/emails/register/html.pug
Normal file
@@ -0,0 +1,6 @@
|
||||
p= t('registration_email')
|
||||
|
||||
hr
|
||||
small #{config.title} / #{config.description}
|
||||
br
|
||||
small #{config.baseurl}
|
||||
1
server/emails/register/subject.pug
Normal file
1
server/emails/register/subject.pug
Normal file
@@ -0,0 +1 @@
|
||||
= `[Gancio] Richiesta registrazione`
|
||||
Reference in New Issue
Block a user