{% extends "django_meta_whatsapp/base.html" %} {% block title %}Dashboard{% endblock %} {% block page_title %}Dashboard{% endblock %} {% block content %}
Contacts

{{ total_contacts }}

Conversations

{{ total_conversations }}

{% if unread_count %}

{{ unread_count }} unread

{% endif %}
Campaigns

{{ total_campaigns }}

{% if running_campaigns %}

{{ running_campaigns }} running

{% endif %}
Messages Today

{{ messages_today }}

Recent Campaigns

View all →
{% for camp in recent_campaigns %}

{{ camp.name }}

{{ camp.created_at|date:"d M Y" }}

{{ camp.get_status_display }}
{% empty %}
No campaigns yet
{% endfor %}
{% endblock %}