hubl/src/templates/hubl-customer.pug

18 lines
907 B
Plaintext
Raw Normal View History

2020-05-08 13:27:44 +00:00
sib-widget(name='hubl-customer')
template
div.customer-box
div
2020-04-21 16:30:19 +00:00
h3 Client :
ul
2020-04-21 16:30:19 +00:00
li #[span Nom de l'entreprise : ]${await value.name}
2020-04-21 16:39:44 +00:00
li ${await value.companyRegister ? `<span>Immatriculation de l'entreprise : </span> ${await value.companyRegister}` : ``}
li ${await value.address ? `<span>Adresse : </span><br/><p>${await value.address}</p>`: ``}
div
2020-04-21 16:30:19 +00:00
h3 Contact :
ul
2020-04-02 16:09:23 +00:00
li #[span(class='mdi-account-outline') ${await value.first_name} ${await value.last_name ? await value.last_name : ""}]${await value.role ? `, ${await value.role}` : ""}
2020-01-09 09:00:21 +00:00
li
2020-02-24 14:10:02 +00:00
span(class='link-color norm-weight mdi-email-outline')
2020-01-09 09:00:21 +00:00
a(href='mailto:${await value.email}') ${await value.email}
2020-02-24 14:10:02 +00:00
span ${await value.phone ? `<li><span class='norm-weight mdi-cellphone-iphone'>${await value.phone}</span></li>` : ``}