{% extends "base.html" %} {% block title %}약국 관리 - 팜큐 약국 관리 시스템{% endblock %} {% block breadcrumb %} {% endblock %} {% block content %}

약국 관리

등록된 약국 정보 및 연결 상태 관리

{% if pharmacies %}
{% for pharmacy_data in pharmacies %} {% endfor %}
약국 정보 담당자 구독 서비스 연결된 머신 네트워크 상태 액션
{{ pharmacy_data.pharmacy_name }} {{ pharmacy_data.business_number }}
{{ pharmacy_data.headscale_user_name }}
{{ pharmacy_data.address or '주소 미등록' }}
{{ pharmacy_data.manager_name or '미등록' }}
{{ pharmacy_data.phone or '연락처 미등록' }}
로딩...
{{ pharmacy_data.machine_count }}대
온라인: {{ pharmacy_data.online_count }} / 오프라인: {{ pharmacy_data.offline_count }}
{% if pharmacy_data.online_count == pharmacy_data.machine_count and pharmacy_data.machine_count > 0 %} 모든 머신 온라인 {% elif pharmacy_data.online_count > 0 %} 부분적 연결 {% elif pharmacy_data.machine_count > 0 %} 전체 오프라인 {% else %} 머신 없음 {% endif %}
{% else %}

등록된 약국이 없습니다

첫 번째 약국을 등록하여 시작해보세요.

{% endif %}
{% endblock %} {% block extra_js %} {% endblock %}