{% extends 'base.html' %} {% load static %} {% block title %}TV Channels - Adtlas{% endblock %} {% block extra_css %} {% endblock %} {% block content %}

Channels Management

{% for channel in channels %} {% empty %} {% endfor %}
Name Description Status Created Actions
{{ channel.name }}
ID: {{ channel.id }}
{{ channel.description|truncatechars:50 }} {% if channel.is_active %} Active {% else %} Inactive {% endif %} {{ channel.created_at|date:"M d, Y" }}
No channels found
{% endblock %} {% block extra_js %} {% endblock %}