{% block head_extra %}{% endblock %}
{% for item in nav_items %} {% set is_active = request.url.path == item.href or (item.active == 'db' and request.url.path.startswith('/db')) or (item.active == 'admin' and request.url.path.startswith('/admin')) %}
{{ item.label }}
{% endfor %}
{% if current_user %}
{{ current_user.display_name }}
로그아웃
{% endif %}
듀얼
{% if message %}
{{ message }}
{% endif %} {% block content %}{% endblock %}
{% block script %}{% endblock %}