Subreddits ({{ subreddits|length }})

{% for sub in subreddits %} {% include 'partials/_item_subreddit.html' %} {% else %}
Nenhum subreddit configurado
{% endfor %}

Users ({{ users|length }})

{% for user in users %} {% include 'partials/_item_user.html' %} {% else %}
Nenhum user configurado
{% endfor %}

Blacklist

Autores Bloqueados ({{ blacklist.authors|length }})

{% for author in blacklist.authors %} {% with prefix='u/', value=author, delete_url='/api/blacklist/authors/' ~ author, confirm='Remover u/' ~ author ~ ' da blacklist?' %} {% include 'partials/_tag.html' %} {% endwith %} {% else %} Nenhum autor bloqueado {% endfor %}

Subreddits Bloqueados ({{ blacklist.subreddits|length if blacklist.subreddits else 0 }})

{% for sub in blacklist.subreddits or [] %} {% with prefix='r/', value=sub, delete_url='/api/blacklist/subreddits/' ~ sub, confirm='Remover r/' ~ sub ~ ' da blacklist?' %} {% include 'partials/_tag.html' %} {% endwith %} {% else %} Nenhum subreddit bloqueado {% endfor %}

Palavras no Titulo ({{ blacklist.title_keywords|length }})

{% for keyword in blacklist.title_keywords %} {% with prefix='', value=keyword, delete_url='/api/blacklist/keywords/' ~ keyword, confirm='Remover "' ~ keyword ~ '" da blacklist?' %} {% include 'partials/_tag.html' %} {% endwith %} {% else %} Nenhuma palavra bloqueada {% endfor %}

Dominios Bloqueados ({{ blacklist.domains|length }})

{% for domain in blacklist.domains %} {% with prefix='', value=domain, delete_url='/api/blacklist/domains/' ~ domain, confirm='Remover "' ~ domain ~ '" da blacklist?' %} {% include 'partials/_tag.html' %} {% endwith %} {% else %} Nenhum dominio bloqueado {% endfor %}