{% extends 'layouts/app.twig' %} {% block content %}

Admin Dashboard

Manage your media sources and synchronization

Source Management

Configure and sync your media sources

{% for source in sources %}

{{ source.display_name }}

{% if source.is_active %}Active{% else %}Inactive{% endif %}
{% if source.last_sync_at %}
Last sync: {{ source.last_sync_at|date('M j, Y H:i') }}
{% else %}
Never synced
{% endif %}
{% endfor %}

Recent Sync Activity

Latest synchronization logs and status

{% for sync in recent_syncs %} {% endfor %}
Source Type Status Progress Started Duration
{{ sync.source_name }} {{ sync.sync_type|title }} {{ sync.status|title }} {% if sync.total_items > 0 %} {{ sync.processed_items }} / {{ sync.total_items }} {% else %} - {% endif %} {% if sync.started_at %} {{ sync.started_at|date('M j, H:i') }} {% else %} - {% endif %} {% if sync.started_at and sync.completed_at %} {{ sync.started_at|date('U') - sync.completed_at|date('U') }}s {% else %} - {% endif %}
{% endblock %}