{% extends "base.html" %} {% block title %}머신 상세 정보 - 팜큐 약국 관리 시스템{% endblock %} {% block breadcrumb %} {% endblock %} {% block content %}
{{ machine.hostname }}
| 머신 ID | {{ machine.id }} |
|---|---|
| 호스트명 | {{ machine.hostname }} |
| 표시 이름 | {{ machine.given_name or '미설정' }} |
| 사용자 | {% if machine.user %} {{ machine.user.name }} {% else %} 미지정 {% endif %} |
| 등록 방식 | {{ machine.register_method or '알 수 없음' }} |
| 등록일 | {% if machine.created_at %} {% if machine.created_at.__class__.__name__ == 'datetime' %} {{ machine.created_at.strftime('%Y년 %m월 %d일 %H:%M') }} {% else %} {{ machine.created_at }} {% endif %} {% else %} 알 수 없음 {% endif %} |
| IPv4 주소 | {{ machine.ipv4 }} |
|---|---|
| IPv6 주소 | {{ machine.ipv6 }} |
| 엔드포인트 |
{% if machine.get_endpoints() %}
{% for endpoint in machine.get_endpoints()[:3] %}
{% else %}
없음
{% endif %}
{{ endpoint }}... 및 {{ machine.get_endpoints()|length - 3 }}개 더
{% endif %}
|
| 마지막 접속 |
{% if machine.last_seen %}
{% if machine.last_seen.__class__.__name__ == 'datetime' %}
{{ machine.last_seen.strftime('%Y-%m-%d %H:%M:%S') }}
{% else %}
{{ machine.last_seen }}
{% endif %}
{{ last_seen_humanized }} {% else %} 알 수 없음 {% endif %} |
{{ specs.cpu_model }}
{{ specs.cpu_cores }}코어{{ specs.ram_gb }}GB
RAM{{ specs.storage_gb }}GB
디스크{{ specs.network_speed }}Mbps
{{ specs.os_info or '알 수 없음' }}{{ pharmacy.address or '주소 미등록' }}