{% extends "base.html" %} {% load i18n %} {% block content %}

{% trans 'Apply Route Template' %}

{% trans 'Select a routing template to apply to the peer' %} {{ current_peer }}.

{% if current_template %}
{% trans 'Current Active Template:' %} {{ current_template.name }}
{% endif %}
{% for template in available_templates %} {% empty %} {% endfor %}
{% trans 'Template Name' %} {% trans 'Type' %} {% trans 'Actions' %}
{{ template.name }} {{ template.get_route_type_display }} {% if template != current_template %}
{% csrf_token %}
{% else %}
{% csrf_token %}
{% endif %}
{% trans 'No routing templates available for this interface.' %}
{% endblock %}