{% extends "advertisers/base.html" %} {% load static %} {% load advertiser_tags %} {% block title %}{{ agency.name }} - Agency Details - Adtlas{% endblock %} {% block extra_css %} {% endblock %} {% block content %}

Agency Information

{% if agency.logo %} {{ agency.name }} {% else %}
{% endif %}

{{ agency.name }}

{% if agency.contact_person %}

{{ agency.contact_person }}

{% endif %} {% if agency.is_active %} Active {% else %} Inactive {% endif %}
{{ agency.total_brands }}

Brands

{{ agency.total_campaigns }}

Campaigns


{% if agency.email %} {% endif %} {% if agency.phone %} {% endif %} {% if agency.website %} {% endif %} {% if agency.address %}

{{ agency.address }}

{% endif %} {% if agency.city %}

{{ agency.city }}

{% endif %} {% if agency.country %}

{{ agency.country }}

{% endif %} {% if agency.owner %} {% endif %}

{{ agency.created_at|date:"F d, Y" }}

{{ agency.updated_at|date:"F d, Y" }}

Total Impressions

{% format_number agency_stats.total_impressions %}

+{{ agency_stats.impressions_growth }}% Last 30 days
Total Clicks

{% format_number agency_stats.total_clicks %}

+{{ agency_stats.clicks_growth }}% Last 30 days
CTR

{{ agency_stats.ctr|floatformat:2 }}%

{{ agency_stats.ctr_change|floatformat:2 }}% Last 30 days
Total Budget

{% format_currency agency_stats.total_budget %}

{{ agency_stats.budget_utilization|floatformat:1 }}% utilized

Performance Overview

{% for brand in agency.brands.all %} {% empty %} {% endfor %}
Brand Name Category Status Campaigns Budget Created Actions
{% if brand.logo %} {{ brand.name }} {% else %}
{% endif %}
{{ brand.name }}
{% if brand.industry %} {{ brand.industry }} {% endif %}
{% if brand.category %} {{ brand.category.name }} {% else %} - {% endif %} {% status_badge brand.status %} {{ brand.total_campaigns }} {% if brand.annual_budget %} {% format_currency brand.annual_budget %} {% else %} - {% endif %} {{ brand.created_at|date:"M d, Y" }}

No brands found

Create your first brand for this agency.

{% if agency.description %}

Agency Description

{{ agency.description|linebreaks }}

{% endif %}

Recent Campaigns

{% for campaign in recent_campaigns %} {% empty %} {% endfor %}
Campaign Name Brand Status Start Date End Date Budget Performance
{{ campaign.name }}
{{ campaign.campaign_type|title }}
{{ campaign.brand.name }} {% status_badge campaign.status %} {{ campaign.start_date|date:"M d, Y" }} {{ campaign.end_date|date:"M d, Y" }} {% format_currency campaign.budget %}
CTR: {{ campaign.ctr|floatformat:2 }}%
No recent campaigns found
{% endblock %} {% block extra_js %} {% endblock %}