{% extends "admin/dashboard.html" %} {% load static %} {% block title %} Admin | Cleaning Videos List {% endblock title %} {% block content %}

All Cleaning Videos

Add Video
{% for video in cleaning_videos %} {% empty %} {% endfor %}
ID Video Title Description Status Created At Action
{{ video.id }} {{ video.title }} {{ video.description|truncatechars:50 }} {% if video.is_active %} Active {% else %} Inactive {% endif %} {{ video.created_at|date:"Y-m-d" }}
No videos available
{% endblock content %}