{% 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 Information

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 }}

Partner Statistics

{% with statistics=partner.get_statistics %} {% if partner.get_last_invoice %} {% else %} {% endif %} {% endwith %}
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?{{ partner.get_last_invoice }}N/A
How much has this partner been billed for? ${{ statistics.total_billed }}

Want more statistics? Create a feature request on My-Business Github!


{% if user.is_superuser %} Edit Partner Delete Partner {% endif %}
{% endblock content %}