{% extends "base.html" %} {% load i18n %} {% block title %}{{ _("View Customer") }}{% endblock title %} {% block content %}

{{ _("Customer Details") }}

{{ _("First Name") }}: {{ customer.first_name }}

{{ _("Middle Name") }}: {{ customer.middle_name }}

{{ _("Last Name") }}: {{ customer.last_name }}

{{ _("Email") }}: {{ customer.email }}

{{ _("National ID") }}: {{ customer.national_id }}

{{ _("Phone Number") }}: {{ customer.phone_number }}

{{ _("Address") }}: {{ customer.address }}

{% endblock %}