{% extends "base.html" %} {% load crispy_forms_tags %} {% block title %}{{ partner.company }}{% endblock title %} {% block subtitle %}View data about the partner.{% endblock subtitle %} {% block content %}
Partner ID | {{ partner.partner_id }} |
---|---|
Company / Organization / University | {{ partner.company }} |
Contact Name | {{ partner.contact_name }} |
Contact Email | {{ partner.contact_email }} |
Contact Phone Number | {{ partner.get_pretty_contact_phone }} |
Address Line 1 | {{ partner.address1 }} |
Address Line 2 | {{ partner.address2 }} |
City | {{ partner.city }} |
State / Region / Province | {{ partner.state }} |
ZIP / Postal Code | {{ partner.zipcode }} |
Notes | {{ partner.notes }} |
When did we become partners? | {{ partner.created_at|date:'DATE_FORMAT' }} | |
---|---|---|
How many non-void invoices have been created for this partner? | {{ statistics.non_void_invoices_count }} | |
What is the last invoice that has been sent to this partner? | {% if partner.get_last_invoice %}{{ partner.get_last_invoice }} | {% else %}N/A | {% endif %}
How much has this partner been billed for? | ${{ statistics.total_billed }} |
Want more statistics? Create a feature request on My-Business Github!