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

{{ brand_stats.total_brands }}

Total Brands

{{ brand_stats.active_brands }}

Active

Featured

{{ brand_stats.total_agencies }}

Agencies

Filters & Search
New Brand
Brands {{ brands|length }} result{{ brands|length|pluralize }}
Loading...
{% if brands %}
{% for brand in brands %}
{% if brand.logo %} {% else %}
{% endif %}
{{ brand.name }}
{% if brand.agency %} {{ brand.agency.name }} {% endif %}
{% if brand.status == 'active' %} Active {% elif brand.status == 'inactive' %} Inactive {% elif brand.status == 'pending' %} Pending {% elif brand.status == 'suspended' %} Suspended {% elif brand.status == 'archived' %} Archived {% endif %} {% if brand.is_featured %} Featured {% endif %}
{% if brand.description %}
{{ brand.description|truncatechars:100 }}
{% endif %} {% if brand.category %}
{{ brand.get_category_display }}
{% endif %} {% if brand.agency %}
{{ brand.agency.name }}
{% endif %} {% if brand.created_at %}
Created {{ brand.created_at|date:"M Y" }}
{% endif %}
0
Advertisers
0
Campaigns
0
Adspots
{% endfor %}
{% else %}
No brands found

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

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