{% extends 'bp_util_base.html' %} {% block content %}

{% block title %} Blacklists {% endblock %}

Enable blacklists in "Tools".

A blacklist is a list of title "names". The recorder refuses to write if the title name is found in the list.

Delete a title name from the list to record a file again.

Skip count is the number of title writes skipped by the recorder during an app session.


Skip count: {{skip_count}}
{% for radio in radios_dict.values()%} {% if radio in streamer_name_list %} {% set btn_color='btn btn-success btn-sm' %} {% else -%} {% set btn_color='btn btn-warning btn-sm' %} {% endif -%} {{radio}} {{radio_blacklist_count[radio]}}

{% endfor %}

{% endblock %}