{% extends 'base.html' %} {% load i18n %} {% block title %} {% trans "View Vendor" %} {% endblock title %} {% block content %}

{% trans "Vendor Details" %}

{% if vendor.logo%}{% endif %}
  • {% trans "Name" %}: {{ vendor.get_local_name }}
  • {% trans "Contact Person" %}: {{ vendor.contact_person }}
  • {% trans "Phone Number" %}: {{ vendor.phone_number }}
  • {% trans "Email" %}: {{ vendor.email }}
  • {% trans "Address" %}: {{ vendor.address }}
{% for bill in vendor_bills%} {% empty %} {% endfor %}
{{ _("Bill") |capfirst }} {{ _("Bill Status") |capfirst }} {{ _("Bill Amount Paid") |capfirst }} {{ _("Bill Amount Due") |capfirst }}
{{ bill.bill_number }} {{ bill.bill_status }} {{ bill.amount_paid}} {{ bill.amount_due}}
{% trans "No Bills Found For the Vendor: {vendor.get_local_name}" %}
{% if is_paginated %} {% include 'partials/pagination.html' %} {% endif %}
{% include 'modal/delete_modal.html' %} {% endblock %}