{% extends 'layouts/base.html' %} {% block title %}Channels - Stream Processor{% endblock %} {% block page_title %}
Streaming Channels
{% endblock %} {% block content %}
New Channel
{% if channels %}
{% for channel in channels %}

{{ channel.name }}

{% if channel.is_active %} Active {% else %} Inactive {% endif %} {% if channel.active_session %} Streaming {% endif %}
{{ channel.hls_url }}
{% if channel.description %}
{{ channel.description|truncatewords:20 }}
{% endif %}
{{ channel.segment_duration }}s segments {{ channel.max_segments }} max {{ channel.created_by.username }}
{% if channel.active_session %}
{% csrf_token %}
{% elif channel.is_active %} {% endif %} Edit View
{% endfor %}
{% if is_paginated %} {% endif %} {% else %}

No channels found

{% if search or status_filter %}

Try adjusting your search or filter criteria

Clear Filters {% else %}

Create your first streaming channel to get started

Create Channel {% endif %}
{% endif %}
{% endblock %} {% block extra_js %} {% endblock %}