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

Basic Information

Server
{{ server.hostname }} ({{ server.ip_address }})
Created
{{ app.created_at.strftime('%Y-%m-%d %H:%M') }}
Last Updated
{{ app.updated_at.strftime('%Y-%m-%d %H:%M') }}

Ports

{% if app.ports %}
{% for port in app.ports %} {% endfor %}
Port Protocol Description
{{ port.port_number }} {{ port.protocol }} {{ port.description or 'No description' }}
{% else %}

No ports configured

Add port information to track which ports this application uses.

{% endif %}

Documentation

{% if app.documentation %} {{ app.documentation|markdown }} {% else %}

No documentation available

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

{% endif %}
{% for port in app.ports %} {% endfor %} {% endblock %}