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

Settings

Subscribe to a YouTube channel
{% csrf_token %}

Write one entry, either "channel/*" or "user/*", per line.

Follow a Twitch user
{% csrf_token %}

Write one user login per line.

Force update
{%csrf_token%}
Clear old videos

Delete videos older than:

{%csrf_token%}
Edit update schedule
{% csrf_token %}

Write space separated update hours for each priority level.

YouTube token

Delivered at {{operator.youtube.oauth_flow.token.delivery_datetime|date:"Y-m-d H:i:s"}} and expires at {{operator.youtube.oauth_flow.token.expiration_datetime|date:"Y-m-d H:i:s"}}.

Twitch token

Delivered at {{operator.twitch.oauth_flow.token.delivery_datetime|date:"Y-m-d H:i:s"}} and expires at {{operator.twitch.oauth_flow.token.expiration_datetime|date:"Y-m-d H:i:s"}}.

YouTube subscriptions

{% if channels %}
{% for channel in channels %}
{{channel.title}} {{channel.title}}
{% endfor %}
{% else %}

You are not subscribed to any channel.

{% endif %}

Twitch follows

{% if users %}
{% for user in users %}
{{user.display_name}} {{user.display_name}}
{% endfor %}
{% else %}

You are not following any user.

{% endif %} {% endblock body %}