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

Modération Twitch

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

{% if is_live %} {% else %} {% endif %}

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

{% if is_live %}

{{ stream_title or 'Sans titre' }}

{% else %}

À bientôt

{% endif %}
Chaîne

Filtre liens

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

Réglages

Mots interdits

{{ banned_words|length }} actif{{ 's' if banned_words|length != 1 else '' }}

Liste
{% if is_live %} EN DIRECT {% else %} Pas en direct {% endif %} • {{ viewer_count }} viewers
Ouvrir
{% if is_live %}

{{ stream_title or 'Sans titre' }}

{{ game_name or 'Catégorie non renseignée' }}{% if stream_uptime %} · {{ stream_uptime }}{% endif %}

{% else %}

En attente du prochain live

Lecteur intégré — son activé automatiquement quand la chaîne est en ligne

{% endif %}

Chat Twitch (bot)

Msg/min: 0

Récupération du chat...

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

Envoyé via le bot • Ouvrir le chat

Chat Twitch (compte perso)

Ouvrir
Shoutbox Modos
12
Aucun message
En ligne
---
>
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 %}
{% 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 '-' }}
{% if not logs %}
Aucun log
{% endif %}

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
{% if not custom_commands %}
Aucune commande personnalisée
{% 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 %}