{% extends 'base.html' %} {% from '_partials/page_header.html' import page_header %} {% block title %}Networking · Routing{% endblock %} {% block content %} {{ page_header('Networking', tabs=tabs, active_tab='routing') }}

{{ routes|length }} routes · static routes are saved to the interface profile and survive a reboot

{% for r in routes %} {% endfor %}
DestinationGatewayInterfaceMetricSourceActions
{{ r.dest }} {{ r.gateway or '—' }} {{ r.iface | iface_label }} {{ r.metric }} {{ 'saved' if r.managed else r.proto }} {% if r.deletable %}
{% else %} system {% endif %}
{% endblock %}