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

Basic Information

IP Address
{{ server.ip_address }}
Subnet
{{ server.subnet.cidr }} ({{ server.subnet.location }})
Scan Status
{{ server.last_scan or 'Not scanned yet' }}

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

Documentation

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

No documentation available

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

{% endif %}

Applications

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

{% if app.documentation %}
{{ app.documentation|markdown|safe }}
{% else %}
No documentation available
{% endif %}
{% endfor %}
{% else %}

No applications found

This server doesn't have any applications yet.

{% endif %}
{% block extra_js %} {% endblock %} {% endblock %} {% block styles %} {% endblock %}