{% extends "layout.html" %} {% block content %}

Server Information

IP Address:
{{ server.ip_address }}
Subnet:
{{ server.subnet.cidr }}
Location:
{{ server.subnet.location }}
Created:
{{ server.created_at.strftime('%Y-%m-%d') }}

Port Usage

{% for i in range(1, 101) %} {% set port_num = 8000 + i - 1 %} {% set port_used = false %} {% set port_app = "" %} {% set port_color = "" %} {% set tooltip = "" %} {% for app in server.apps %} {% for port in app.ports %} {% if port.port_number == port_num %} {% set port_used = true %} {% set port_app = app.name %} {% set port_color = "bg-" ~ ["primary", "success", "info", "warning", "danger"][(app.id % 5)] %} {% set tooltip = app.name ~ " - " ~ port.description %} {% endif %} {% endfor %} {% endfor %}
{{ port_num }}
{% endfor %}
Port Free
Port Used

Applications

{% if server.apps %}
{% for app in server.apps %}

{{ app.name }}

{% if app.ports %}
Ports: {% for port in app.ports %} {{ port.port_number }}/{{ port.protocol }} {% endfor %}
{% endif %} {% if app.documentation %}
Documentation
{{ app.documentation|markdown|safe }}
{% else %}
No documentation available
{% endif %}
{% endfor %}
{% else %}

No applications found

This server doesn't have any applications yet.

{% endif %}

Documentation

{% if server.documentation %} {{ server.documentation|markdown|safe }} {% else %}

No documentation available

Add documentation to this server to keep track of important information.

{% endif %}
{% endblock %} {% block scripts %} {% endblock %} {% block styles %} {% endblock %}