{% extends "layouts/base.html" %} {% load static %} {% block title %}Agencies{% endblock %} {% block extra_css %} {% endblock extra_css %} {% block breadcrumb %} {% endblock breadcrumb %} {% block content %}

{{ stats.total_agencies }}

Total Agencies

{{ stats.active_agencies }}

Active

{{ stats.verified_agencies|default:0 }}

Verified

Featured

Filters & Search
New Agency
Agencies {{ agencies|length }} result{{ agencies|length|pluralize }}
Loading...
{% if agencies %}
{% for agency in agencies %}
{% if agency.logo %} {% else %}
{% endif %}
{{ agency.name }}
{% if agency.agency_type %} {{ agency.agency_type.name }} {% endif %}
{% if agency.is_verified %} Verified {% endif %} {% if agency.is_featured %} Featured {% endif %} {% if not agency.is_active %} Inactive {% endif %}
{% if agency.description %}
{{ agency.description|truncatechars:100 }}
{% endif %}
{{ agency.email }}
{% if agency.phone %}
{{ agency.phone }}
{% endif %} {% if agency.founded_year %}
Founded {{ agency.founded_year_str }}
{% endif %} {% if agency.get_full_address %}
{{ agency.get_full_address|truncatechars:50 }}
{% endif %}
{{ agency.team_members.count }}
Team
0
Brands
0
Campaigns
{% endfor %}
{% else %}
No agencies found

Try adjusting your filters or create a new agency to get started.

Create New Agency
{% endif %}
{% endblock content %} {% block modals %} {% endblock modals %} {% block extra_js %} {% endblock extra_js %}