{% extends "base.html" %} {% block content %}
{# 헤더 섹션 #}

서버 관리 대시보드

IP 처리 및 파일 관리를 위한 통합 관리 도구

{# 메인 작업 영역 #}
{# IP 처리 카드 #}
IP 처리
{# 스크립트 선택 #}
{# XML 파일 선택 (조건부) #} {# IP 주소 입력 #}
{# 공유 작업 카드 #}
공유 작업
{# 진행바 #}
처리 진행률
0%
{# 파일 관리 도구 #}
파일 관리 도구
{# 처리된 파일 목록 #}
처리된 파일 목록
{% if files_to_display and files_to_display|length > 0 %}
{% for file_info in files_to_display %} {% endfor %}
{% if total_pages > 1 %} {% endif %} {% else %}

표시할 파일이 없습니다.

{% endif %}
{# 백업된 파일 목록 #}
백업된 파일 목록
{% if backup_files and backup_files|length > 0 %}
{% for date, info in backup_files.items() %}
{{ date }} {{ info.count }} 파일
{% for file in info.files %} {% endfor %}
{% endfor %}
{% else %}

백업된 파일이 없습니다.

{% endif %}
{# 파일 보기 모달 #} {% endblock %} {% block extra_css %} {% endblock %} {% block scripts %} {{ super() }} {% endblock %}