클라이언트 생성
{% with messages = get_flashed_messages(with_categories=true) %}
{% if messages %}
{% for category, msg in messages %}
- {{msg}}
{% endfor %}
{% endif %}
{% endwith %}
등록된 클라이언트:
{% if clients %}
{% for c in clients %}
{{c}}
보기
다운로드
삭제
{% if conf_text and request.args.get('show') == c %}
{{conf_text}}
{% if qrcode %}
QR 다운로드 (JPG)
{% endif %}
{% endif %}
{% endfor %}
{% else %}
등록된 클라이언트 없음
{% endif %}