Don't display null customer details
This commit is contained in:
parent
7c26bc5f6d
commit
1ae56e77cf
@ -150,7 +150,7 @@
|
||||
li {
|
||||
margin-bottom: 0.5em;
|
||||
|
||||
&::before {
|
||||
span::before {
|
||||
color: $color-43-100-50;
|
||||
font-size: 2.2rem;
|
||||
margin: 0 1rem 0 0;
|
||||
|
@ -5,15 +5,13 @@ sib-widget(name='hd-customer')
|
||||
h3 Client:
|
||||
ul
|
||||
li #[span Business name: ]${await value.name}
|
||||
li #[span Company register: ]${await value.companyRegister}
|
||||
li
|
||||
span Address:
|
||||
br
|
||||
p ${await value.address}
|
||||
li ${await value.companyRegister ? `<span>Company register: </span> ${await value.companyRegister}` : ``}
|
||||
li ${await value.address ? `<span>Address: </span><br/><p>${await value.address}</p>`: ``}
|
||||
div
|
||||
h3 Contact:
|
||||
ul
|
||||
li(class='mdi-account-outline') #[span ${await value.firstName} ${await value.lastName}], ${await value.role}
|
||||
li(class='mdi-email-outline')
|
||||
a(href='mailto:${await value.email}') ${await value.email}
|
||||
li(class='mdi-cellphone-iphone') ${await value.phone}
|
||||
li #[span(class='mdi-account-outline') ${await value.firstName} ${await value.lastName ? await value.lastName : ""}]${await value.role ? `, ${await value.role}` : ""}
|
||||
li
|
||||
span(class='mdi-email-outline')
|
||||
a(href='mailto:${await value.email}') ${await value.email}
|
||||
span ${await value.phone ? `<li><span class='mdi-cellphone-iphone'>${await value.phone}</span></li>` : ``}
|
||||
|
Loading…
Reference in New Issue
Block a user