{% extends "admin_base.html" %} {% block title %}List All Nodes{% endblock %} {% block content %}
{% if flash.info is defined %} {{ flash.info.0|raw }} {% endif %}

Configured Nodes


{% for id, node in nodes %} {% endfor %}
Node Name Location Public Address Private Address Status
{{ node.name }} {{ node.l_location }} {{ node.fqdn }} {{ node.ip }}
{% endblock %} {% block javascript %} {% endblock %}