{% extends "tasks/base.html" %} {% load tasks_tags %} {% block title %}Clients — Staff Panel{% endblock %} {% block topbar_title %}Clients{% endblock %} {% block topbar_actions %} {% if request.user|has_perm:"create_client" %} + New Client {% endif %} {% endblock %} {% block content %}
{% for client in clients %} {% empty %} {% endfor %}
Name Company Email Projects Portal Status
{{ client.name }} {{ client.company_name }} {{ client.email }} {{ client.project_count }} {% if client.portal_profile %} ● Active {% else %} None {% endif %} {{ client.get_status_display }}

No clients found.

{% if client_page and client_page.paginator.num_pages > 1 %}
Page {{ client_page.number }} of {{ client_page.paginator.num_pages }}
{% if client_page.has_previous %} ← Previous {% endif %} {% if client_page.has_next %} Next → {% endif %}
{% endif %} {% endblock %}