{% load django_ledger %} {% load i18n %}
| {% trans 'Customer Number' %} | {% trans 'Customer' %} | {% trans 'Address' %} | {% trans 'Code' %} | {% trans 'Active' %} | {% trans 'Hidden' %} | {% trans 'Actions' %} |
|---|---|---|---|---|---|---|
| {{ customer_model.customer_number }} | {{ customer_model.customer_name }} | {% if customer_model.address_1 %}{{ customer_model.address_1 }}{% endif %} | {% if customer_model.customer_code %}{{ customer_model.customer_code }}{% endif %} | {% if customer_model.active %} {% icon 'ant-design:check-circle-filled' 20 %} {% else %} {% icon 'mdi:dangerous' 20 %} {% endif %} | {% if customer_model.hidden %} {% icon 'bi:eye-slash-fill' 20 %} {% else %} {% icon 'bi:eye-fill' 20 %} {% endif %} |
|