{% extends 'admin/layout.twig' %} {% block title %}Media Sources - Admin{% endblock %} {% block content %}

Media Sources

{% if sources is not empty %}
{% for source in sources %} {% endfor %}
Name Type Path/URL Status Last Sync Actions
{{ source.name }} {{ source.type|upper }} {{ source.path }} {{ source.is_active ? 'Active' : 'Inactive' }} {{ source.last_sync ? source.last_sync|date('Y-m-d H:i:s') : 'Never' }}
{% else %}

No Media Sources Found

Add your first media source to get started.

{% endif %} {% endblock %} {% block scripts %} {% endblock %}