{% extends "components/base.html" %} {% block title %}IP Management{% endblock %} {% block main_area %}

IP 관리 대장

{% if not request.user.is_authenticated %}

비로그인 익명사용자로 접근 중입니다.
로그인시 로그인 사용자가 등록한 데이터만 조회됩니다.

{% endif %}
{% csrf_token %} {% for record in records %} {% empty %} {% endfor %}
Select Network Name Server Name Location IP Address Remark Author Updated At
{{ record.network_nm }} {{ record.svr_nm }} {{ record.contents }} {{ record.ip_addrs }} {{ record.remark }} {{ record.author }} {{ record.updated_at|date:"Y-m-d H:i" }}
No records found.
{% if request.user.is_authenticated %}
{% endif %}
{% for record in records %} {% endfor %} {% endblock %}