{% extends 'notifpy/base.html' %} {% load static %} {% block title %}{{channel.title}} | Notifpy{% endblock%} {% block body %}

{{channel.title}}

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

Last videos

{% if videos %} {% else %}

No video found for this channel.

{% endif %}

Settings

Delete Update

Channel properties
{% csrf_token %}
Add a 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.

{% csrf_token %}

Write one filter per line.

Current filters
{% if channel.filter_set.all %} {% for filter in channel.filter_set.all %}
{% csrf_token %}
{% endfor %} {% else %}

No filter found for this channel.

{% endif %}
{% endblock %}