{% 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 %}
Active

{{ accounts|length }}

Connected Accounts

Syncing

{{ accounts|dictsort:"account.is_active"|length }}

Active Platforms

Action

{{ accounts|dictsort:"is_expired"|length }}

Expired Tokens

Ready

{{ platform_names|length }}

Available Platforms

{% 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 %}
{{ 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 %}
Connected
{{ platform_name }}

Account is active and syncing

View Comments
{% else %}
{% social_icon platform_code %}
Connect
{{ platform_name }}

Click to connect your account

Connect
{% endif %}
{% endif %} {% endfor %}
Webhook Support Information
Meta (Facebook/Instagram)
Webhooks Real-time updates
LinkedIn
Polling Periodic sync
Google Reviews
Polling Periodic sync
TikTok
Polling Periodic sync
X (Twitter)
Polling Periodic sync
YouTube
Polling Periodic sync
{% endblock %}