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

Basic Information

Server
{{ app.server.name }} ({{ app.server.ip_address }})
Created
{{ app.created_at }}
Last Updated
{{ app.updated_at }}

Ports

{% if app.ports %}
{% for port in app.ports %} {% endfor %}
PORT PROTOCOL DESCRIPTION
{{ port.port_number }} {{ port.protocol }} {{ port.description }}
{% else %}

No ports configured

Add port information to track which ports this application uses.

{% endif %}

Documentation

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

No documentation available

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

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