{% extends "base.html" %} {% block title %}Customers — Jason Studio{% endblock %} {% block content %}
| Name | Company | Phone | Status | Events | ||
|---|---|---|---|---|---|---|
| {{ customer.user.first_name|default:"—" }} {{ customer.user.last_name|default:"" }} | {{ customer.company_name|default:"—" }} | {{ customer.user.email|default:"—" }} | {{ customer.phone|default:"—" }} | {% if customer.is_active %} Active {% else %} Inactive {% endif %} | {{ customer.events.count }} | Edit {% if not customer.selections.count and not customer.orders.count and not customer.events.count %} {% endif %} |