{% extends 'dashboard/base.html' %} {% load static %} {% block title %}Media Library - CMS Dashboard{% endblock %} {% block content %}

Media Library

Upload, search, preview, and manage static assets to reuse across your site.

{% if messages %}
{% for message in messages %} {% endfor %}
{% endif %}
{% if query %} Reset {% endif %}
{% for asset in page_obj %}
{{ asset.alt_text|default:asset.original_filename }}
{{ asset.original_filename }}
{{ asset.file_size|filesizeformat }} {% if asset.width and asset.height %} {{ asset.width }} × {{ asset.height }}px {% else %} SVG Vector {% endif %}
{% csrf_token %}
{% empty %}
No Media Assets Found

Upload dynamic images to populate your CMS Media Library.

{% endfor %}
{% if page_obj.has_other_pages %}
Showing {{ page_obj.start_index }} to {{ page_obj.end_index }} of {{ page_obj.paginator.count }} entries
{% endif %}
{% endblock %} {% block extra_js %} {% endblock %}