{% extends 'base.html' %} {% load static %} {% block title %}Dashboard - Adtlas{% endblock %} {% block extra_css %} {% endblock %} {% block content %}
Total Channels

{{ stats.total_channels|default:0 }}

{{ stats.channels_growth|default:0 }}% last month
Active Campaigns

{{ stats.active_campaigns|default:0 }}

{{ stats.campaigns_change|default:0 }}% last month
Total Impressions

{{ stats.total_impressions|default:0 }}

{{ stats.impressions_growth|default:0 }}% last month
Revenue

${{ stats.total_revenue|default:0 }}

{{ stats.revenue_growth|default:0 }}% last month

Impressions Overview

Daily Impressions
Weekly Impressions
Monthly Impressions

Recent Campaigns

{% for campaign in recent_campaigns %} {% empty %} {% endfor %}
Campaign Status Impressions Revenue
{{ campaign.name }} {% if campaign.is_active %} Active {% else %} Inactive {% endif %} {{ campaign.impressions_count|default:0 }} ${{ campaign.revenue|default:0 }}
No campaigns found

Top Performing Channels

{% for channel in top_channels %} {% empty %} {% endfor %}
Channel Impressions Revenue Performance
{{ channel.name }} {{ channel.impressions_count|default:0 }} ${{ channel.revenue|default:0 }}
No channels found

Recent Activity

{% for log in activity_logs %} {% empty %} {% endfor %}
Time User Action Object Details
{{ log.timestamp|date:"M d, Y H:i" }} {{ log.user.username|default:"System" }} {{ log.action }} {{ log.object_type }} {{ log.details|truncatechars:50 }}
No recent activity
{% endblock %} {% block extra_js %} {% endblock %}