{% extends 'base.html' %} {% load i18n %} {% block title %} {% trans "View Vendor" %} {% endblock title %} {% block customCSS %}{% endblock %} {% 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 make in vendor_makes %} {% empty %} {% endfor %}
{% trans "Make" %} {% trans "Total Cars Purchased" %}
{{ make.id_car_make__name }} {{ make.make_count }}
{% trans "There is no Purchase from this vendor yet" %}
{% 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 %}