{% extends "layouts/base.twig" %} {% block title %}{{ translations.supplier_about_title }}{% endblock %} {% block page_heading %}

{{ translations.supplier_about_heading }}

{{ translations.supplier_about_subtitle }}

{% endblock %} {% block content %} {% include "page_components/alerts.twig" %}
{# QUICK HELP #}
{{ translations.supplier_about_help_title }}
{{ translations.supplier_about_help_body }}
{# SUMMARY CARD #}
{{ supplier.getName() ?? supplier.name ?? translations.not_provided }}
{{ translations.supplier_id_label }}: {{ supplier.getId() ?? supplier.id ?? translations.not_provided }}

{{ translations.supplier_tax_number_label }}
{{ supplier.getTaxNumber() ?? supplier.tax_number ?? translations.not_provided }}
{{ translations.supplier_country_code_label }}
{{ supplier.getCountryCode() ?? supplier.country_code ?? translations.not_provided }}
{{ translations.read_only_hint }}
{# DETAILS #}

{{ translations.supplier_about_details_title }}

{{ translations.supplier_about_details_hint }}
{# Address #}
{{ translations.supplier_address_section }}
{{ translations.supplier_street_label }}
{% set street = supplier.getStreet() ?? supplier.street ?? '' %} {% set streetNo = supplier.getStreetNumber() ?? supplier.street_number ?? '' %} {% if street or streetNo %} {{ street }} {{ streetNo }} {% else %} {{ translations.not_provided }} {% endif %}
{{ translations.supplier_city_zip_label }}
{% set city = supplier.getCity() ?? supplier.city ?? '' %} {% set zip = supplier.getZip() ?? supplier.zip ?? '' %} {% if city or zip %} {{ zip }} {{ city }} {% else %} {{ translations.not_provided }} {% endif %}
{# Contact #}
{{ translations.supplier_contact_section }}
{{ translations.supplier_phone_label }}
{% set phone = supplier.getPhone() ?? supplier.phone ?? '' %} {% if phone %} {{ phone }} {% else %} {{ translations.not_provided }} {% endif %}
{{ translations.supplier_email_label }}
{% set email = supplier.getEmail() ?? supplier.email ?? '' %} {% if email %} {{ email }} {% else %} {{ translations.not_provided }} {% endif %}
{{ translations.contact_hint }}
{% endblock %}