{% extends 'dcim/device/base.html' %} {% load helpers %} {% load i18n %} {% load static %} {% block content %}
{% if diff %}
{% if total_add %} {% trans "ADD" %} {{ total_add }} {% trans "splices" %} {% endif %} {% if total_remove %} {% trans "REMOVE" %} {{ total_remove }} {% trans "splices" %} {% endif %} {% if total_unchanged %} {{ total_unchanged }} {% trans "unchanged" %} {% endif %}
{% csrf_token %}
{% trans "Plans included:" %} {% for plan in approved_plans %} {{ plan.name }}{% if plan.project %} ({{ plan.project }}){% endif %} {% endfor %}
{% for tray in diff %} {% include "netbox_fms/inc/diff_tray_card.html" with show_plan=True %} {% endfor %} {% else %}

{% trans "No approved plans to apply." %}

{% endif %}
{% endblock %}