{% extends "base.html" %} {% block styles %} {{ super() }} {% endblock %} {% block scripts %} {{ super() }} {% endblock %} {% block page_content %} {% if current_user.fresh_user == True %}
ping

{% endif %}
{% if inv_deployments != [] %}
Datacenter Manager

{% for deploy in inv_deployments %} {% include "panel/vdc_pool.html" %} {% endfor %}
{% endif %} {% if inv_services != [] %}
Services
{% include "panel/services.html" %}
{% endif %} {% if inv_domains != [] %}
Domains
{% include "panel/domains.html" %}
{% endif %} {% if inv_addresses != [] %}
Communications

Public

{% for address in inv_addresses %} {% endfor %}
IP Region Reverse DNS
{{ address.ip }} {{ regions[address.region_id] }} {{ address.rdns }}
{% endif %}
{% endblock %}