{% extends 'ui/panels/_base.html' %} {% load i18n %} {# The floorplan canvas, rendered as a panel by TemplatePanel. A canvas driven by Fabric.js #} {# has no declarative equivalent, so this stays a template; everything around it — the page #} {# chrome, breadcrumbs and tab strip — comes from the layout on the view. TemplatePanel #} {# supplies the panel's whole template, hence extending the panel base to keep the card. #} {% block panel_content %}
{% if floorplan is None %} {% if perms.netbox_floorplan.add_floorplan %} {% trans "Add Floorplan" %} {% endif %} {% else %} {% trans "Export SVG" %} {% if perms.netbox_floorplan.change_floorplan %} {% trans "Edit Floorplan" %} {% endif %} {% if perms.netbox_floorplan.delete_floorplan %} {% trans "Delete Floorplan" %} {% endif %} {% endif %}


{% endblock panel_content %}