{% 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 '' }}

{% if is_live %} {% else %} {% endif %} {{ 'EN DIRECT' if is_live else 'HORS LIGNE' }} • {{ viewer_count }} viewers
Ouvrir
Titre
{{ stream_title or 'N/A' }}
Catégorie
{{ game_name or 'N/A' }}
Viewers
{{ viewer_count }}
Uptime
--:--:--

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 %}