{% extends "template.html" %} {% block content %}

Modération Twitch

Commandes et logs de modération pour {{ twitch_channel }}

Live

{{ 'En ligne' if is_live else 'Hors ligne' }}

{% if is_live %}
{{ viewer_count }}
viewers
{% endif %}

Filtre de liens

{{ 'Actif' if link_filter_enabled else 'Inactif' }}

Configurer

Mots interdits

{{ banned_words|length }} mot{{ 's' if banned_words|length > 1 else '' }}

Commandes de modération
{% for cmd in commands %} {% endfor %}
Commande(s) Usage Permission
{% for c in cmd.commands %} {{ c }} {% if not loop.last %} {% endif %} {% endfor %} {{ cmd.usage }} {{ cmd.permission }}
Logs de modération ({{ logs|length }})
{% if logs %} Effacer {% endif %}
{% if logs %} {% for log in logs %} {% endfor %}
Date Action Modo Cible Détails
{{ log.created_at.strftime('%d/%m %H:%M') }} {{ log.action }} {{ log.moderator }} {{ log.target or '-' }} {{ log.details or '-' }}
{% else %}
Aucun log
{% endif %}
{% if is_live %}
EN DIRECT • {{ viewer_count }} viewers
Ouvrir sur Twitch

Nouvelle commande

{% else %}

Ajouter une commande

{% endif %}

Chat en direct

Ouvrir sur Twitch

Récupération du chat...

Les messages du chat Twitch apparaîtront ici en temps réel

Envoyé via le bot • Ouvrir le chat

{% if custom_commands %}

Commandes personnalisées Twitch ({{ custom_commands|length }})

{% for cmd in custom_commands %} {% endfor %}
Commande Réponse Permission Actions
{{ cmd.trigger }} {{ cmd.response }} {{ twitch_permissions.get(cmd.twitch_permission or 'viewer', 'Tous') }} Supprimer
{% endif %}

Mots interdits ({{ banned_words|length }})

{% if banned_words %}
{% for word in banned_words %} {% endfor %}
Mot Timeout Ajouté le Actions
{{ word.word }} {{ word.timeout_duration }}s {{ word.created_at.strftime('%d/%m/%Y %H:%M') if word.created_at else '-' }} Supprimer
{% else %}
Aucun mot interdit configuré
{% endif %}
{% endblock %}