{% 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 != [] %}
Deployments

{% for deploy in inv_deployments %} {% if deploy.enabled == False %} {% else %} {% endif %} {% endfor %}
Name CPU Mem HDD Network Control
{% if status[deploy.machine_id] == 'running' %}{% else %}{% endif %}{{ deploy.machine_alias }} {{ deploy.machine_cpu }} Cores {{ deploy.machine_mem }} MB {{ deploy.machine_hdd }} GB {% for addr in deploy.machine_addresses %} {{ addr.ip }}
{% endfor %}
{% if status[deploy.machine_id] == 'running' %}{% else %}{% endif %}{{ deploy.machine_alias }} {{ deploy.machine_cpu }} Cores {{ deploy.machine_mem }} MB {{ deploy.machine_hdd }} GB {% for addr in deploy.machine_addresses %}{{ addr.ip }}
{% endfor %}
{% if status[deploy.machine_id] == 'running' %} {% else %} {% endif %} {% if status[deploy.machine_id] == 'running' %} {% endif %}
{% endif %} {% if inv_services != [] %}
Services

{% for service in inv_services %} {% endfor %}
Category Description Price Months Last Charged
{{ service.category }} {{ service.description }} {{ service.price }} {{ service.period }} {{ moment(service.date_last_charge).format('lll') }} ({{ moment(service.date_last_charge).fromNow() }})
{% endif %} {% if inv_domains != [] %}
Domains

{% for domain in inv_domains %} {% endfor %}
Name Expiry Date Control
{{ domain.fqdn }} {{ domain.date_expire }} soon...
{% endif %} {% if inv_addresses != [] %}
Addresses

{% for address in inv_addresses %} {% endfor %}
IP Region MAC Addr. Reverse DNS Control
{{ address.ip }} {{ region[address.region_id] }} {{ address.mac }} {{ address.rdns }} soon...
{% endif %}
{% endblock %}