{% extends "base.html" %} {% block title %}시스템 설정 - Dell Server Info{% endblock %} {% block extra_css %} {% endblock %} {% block content %}

시스템 설정

관리자 패널로 돌아가기
텔레그램 봇 관리
{% if bots %}
{% for bot in bots %}
{{ bot.name }}
ID: {{ bot.id }}
{% if bot.is_active %} Active {% else %} Inactive {% endif %}

{{ bot.description or "설명이 없습니다." }}

Token: {{ bot.token[:10] }}...
Chat ID: {{ bot.chat_id }}
{% set types = (bot.notification_types or "").split(",") %} {% if 'auth' in types %} 인증 {% endif %} {% if 'activity' in types %} 활동 {% endif %} {% if 'system' in types %} 시스템 {% endif %}
{% endfor %}
{% else %}
등록된 텔레그램 봇이 없습니다.

우측 상단의 '봇 추가' 버튼을 눌러 알림을 설정하세요.

{% endblock %}