{% extends "admin/base_site.html" %} {% load i18n %} {% block title %}{% trans "Acquisitions Dashboard" %} | {{ site_title|default:_('Django site admin') }}{% endblock %} {% block breadcrumbs %}
{% endblock %} {% block content %}Team overview for {{ generated_at|date:"N j, Y, P" }}
| Company | Status | Days |
|---|---|---|
| {{ pc.company_name }} | {{ pc.get_status_display }} | {% if pc.days_since_contact %} {{ pc.days_since_contact }}d {% else %} Never {% endif %} |
| Company | Status | Priority |
|---|---|---|
| {{ pc.company_name }} | {{ pc.get_status_display }} | {{ pc.priority }} |
| Seller | Won | Active | Touchpoints |
|---|---|---|---|
| {{ seller.display_name }} | {{ seller.conversions }} | {{ seller.active_prospects }} | {{ seller.touchpoints }} |
| Company | Campaign | Scheduled |
|---|---|---|
| {{ enrollment.prospective_client.company_name }} | {{ enrollment.campaign.name }} | {{ enrollment.next_step_scheduled_at|date:"M j, g:i A" }} |
| Campaign | Enrolled | Active | Response % |
|---|---|---|---|
| {{ campaign.name }} | {{ campaign.total_enrollments }} | {{ campaign.active_enrollments }} | {{ campaign.response_rate|floatformat:1 }}% |