{% extends 'notifpy/base.html' %} {% load static %} {% block title %}{{channel.title}} ∣ {{ block.super }}{% endblock%} {% block main_content %}

{{ channel.title }}
{{channel.title}} {% if subscribed %}{% endif %}

{% if channel.last_update %} Last update on {{channel.last_update}} {% else %} This channel has never been updated. {% endif %}

Last videos

{% if videos %}
{% for video in videos %}
{% include "notifpy/video.html" %}
{% endfor %}
{% else %}

No video found for this channel.

{% endif %} {% if subscribed %}
Channel filter
Filters are regular expressions that are matched to video titles. If a channel has at least one filter, then its filters form a set of rules to whitelist a video for future channel updates.
{% if filters %}
{% for filter in filters %}
{% csrf_token %} {{ filter.regex }}
{% endfor %}
{% else %}

Currently, there is no filter.

{% endif %}
{% csrf_token %}

Regular expression (Python-friendly) are accepted.

{% endif %} {% if request.user.is_superuser %}

Superuser Settings

Delete Update

{% csrf_token %}
Edit channel properties
{% endif %} {% endblock main_content %}