{% extends "layout.html" %} {% from "components/markdown_content.html" import render_markdown %} {% block title %}{{ title }}{% endblock %} {% block styles %} {% 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 ports to document what this application uses

{% endif %}

Documentation

{% if current_user.is_admin %} {% endif %}
{% if app.documentation %} {{ render_markdown(app.documentation) }} {% else %}
No documentation available for this application.
{% endif %}
{% endblock %} {% block extra_js %} {% endblock %}