{% extends "dcim/site.html" %} {% load helpers %} {% load plugins %} {% load buttons %} {% load perms %} {% load i18n %} {% block controls %} {% if request.user|can_add:context.sop_infra and not context.sop_infra.pk %} {% trans "Add Infrastructure" %} {% endif %} {% if request.user|can_change:context.sop_infra and context.sop_infra.pk %} {% include 'sop_infra/tools/refresh.html' with site=object %} {% trans "Edit Infrastructure" %} {% endif %} {% if request.user|can_delete:context.sop_infra and context.sop_infra.pk %} {% trans "Delete Infrastructure" %} {% endif %} {% endblock controls %} {% block content %}
{% include 'sop_infra/tab/meraki.html' with object=context.sop_infra site=object %}
{% include 'sop_infra/tools/related.html' %} {% include 'sop_infra/tab/prisma.html' with object=context.sop_infra site=object %}
{% include 'sop_infra/tab/classification.html' with object=context.sop_infra site=object %}
{% include 'sop_infra/tab/sizing.html' with object=context.sop_infra site=object %}
{% if context.slave_infra %}

Slave sites

{% endif %}
{% endblock content %}