{% extends 'layouts/base.html' %} {% load social_filters %} {% load social_icons %} {% block title %}Dashboard - Social{% endblock %} {% block page_title %}Social Media Dashboard{% endblock %} {% block page_subtitle %}Manage all your social media accounts in one place{% endblock %} {% block content %}

Social Media Dashboard

Manage all your social media accounts in one place

Connected Accounts
{{ accounts|length }}
Active
Active Platforms
{{ accounts|dictsort:"account.is_active"|length }}
Syncing
Expired Tokens
{{ accounts|dictsort:"is_expired"|length }}
Action Required
Available Platforms
{{ platform_names|length }}
Ready
{% if accounts %}

{% if selected_platform %} {{ platform_names|get_item:selected_platform }} Account {% else %} Connected Accounts {% endif %}

{{ accounts|length }} account(s) connected

{{ accounts|length }}
{% for platform, acc_data in accounts.items %} {% endfor %}
Platform Account Name Platform ID Status Last Sync Actions
{% social_icon platform size=24 %}
{{ platform_names|get_item:platform }}
{% if acc_data.account.is_active %} {% if platform == 'META' %} Real-time {% else %} Polling {% endif %} {% endif %}
{{ acc_data.account.name }} {{ acc_data.account.platform_id|truncatechars:20 }} {% if acc_data.account.is_active %} Active {% else %} Inactive {% endif %} {% if acc_data.is_expired %} Expired {% endif %} {% if acc_data.account.last_synced_at %} {{ acc_data.account.last_synced_at|date:"M d, H:i" }} {% else %} Never {% endif %}
{% if platform in 'TT,X,YT,META' %} {% endif %}
{% endif %}

Connect Your Accounts

Connect platforms to start monitoring comments

{% for platform_code, platform_name in platform_names.items %} {% if not selected_platform or selected_platform == platform_code %}
{% if accounts|get_item:platform_code %}
{% social_icon platform_code size=28 %}
Connected

{{ platform_name }}

Account is active and syncing

View Comments
{% else %}
{% social_icon platform_code size=28 %}
Connect

{{ platform_name }}

Click to connect your account

Connect
{% endif %}
{% endif %} {% endfor %}

Webhook Support Information

{% social_icon 'META' size=20 %}
Meta (Facebook/Instagram)
Webhooks Real-time updates
{% social_icon 'LI' size=20 %}
LinkedIn
Polling Periodic sync
{% social_icon 'GO' size=20 %}
Google Reviews
Polling Periodic sync
{% social_icon 'TT' size=20 %}
TikTok
Polling Periodic sync
{% social_icon 'X' size=20 %}
X (Twitter)
Polling Periodic sync
{% social_icon 'YT' size=20 %}
YouTube
Polling Periodic sync
{% endblock %}