{% extends 'admin_pages/base_admin.html' %} {% block title %}Delivery details for {{invoice.sender}}{% endblock %} {% block content %}
| Name | {{ invoice.sender.name }} - {{ invoice.sender.last_name }} |
|---|---|
| Address | {{ invoice.sender.street }} |
| City | {{ invoice.sender.city }} |
| Country | {{ invoice.sender.country }} |
| Postal Code | {{ invoice.sender.postal_code }} |
| Contacts | {{ invoice.sender.mobile }} |
| Full Name | {{ invoice.receiver.name }} - {{ invoice.receiver.last_name }} |
|---|---|
| Address | {{ invoice.receiver.street }} |
| City | {{ invoice.receiver.city }} |
| Country | {{ invoice.receiver.country }} |
| Postal Code | {{ invoice.receiver.postal_code }} |
| Contacts | {{ invoice.receiver.mobile }} |
| {{ invoice.receiver.email }} |
| Item Value | {{ invoice.item_value }} |
{% if invoice.qr_code %}
{% endif %} |
|---|---|---|
| Description | {{ invoice.item_description }} |