{% extends "dashboard/layout.html" %} {% from "components/markdown_content.html" import render_markdown, render_markdown_with_truncate %} {% block title %}Subnet {{ subnet.cidr }}{% endblock %} {% block content %}
Edit Subnet

Applications in this Subnet

{% if subnet.applications %} {% for app in subnet.applications %}
{{ app.name }} {% if app.server %} on {{ app.server.hostname }} ({{ app.server.ip_address }}) {% endif %} View
{% if app.documentation %} {{ render_markdown_with_truncate(app.documentation) }} Read more {% else %}

No documentation available for this application.

{% endif %}
{% if app.ports %} {% endif %}
{% endfor %} {% else %}
No applications found in this subnet.
{% endif %}
{% endblock %}