-
-
-
-
-
-
-
- ${customer.id or ''}
-
-
-
-
-
-
-
-
- ${customer.name}
-
-
-
-
- % if customer.phones:
- % for phone in customer.phones:
-
-
-
-
- ${phone.number} (type: ${phone.type})
-
-
-
- % endfor
- % else:
-
-
-
-
- (none on file)
-
-
-
- % endif
-
- % if customer.emails:
- % for email in customer.emails:
-
-
-
-
- ${email.address} (type: ${email.type})
-
-
-
- % endfor
- % else:
-
-
-
-
- (none on file)
-
-
-
- % endif
-
-
-
-
- % if request.has_perm('customers.view'):
- ${h.link_to("View Customer", url('customers.view', uuid=customer.uuid), class_='button')}
- % endif
-
-
-