{% extends 'generic/_base.html' %} {% load i18n %} {% load form_helpers %} {% load render_table from django_tables2 %} {# Standalone Elevations LIST page: a NetBox-native filter form (Design, Rack, #} {# Site, Status) driving the GET querystring, over a table of derived #} {# (design, rack) rows. Each row links to the separate per-(design, rack) #} {# elevation and editor views; no elevation is rendered inline here. #} {% block title %}{% trans "Elevations" %}{% endblock %} {% block content %}
{# ---- Filter column ---- #}

{% trans "Filters" %}

{% render_form form %}
{% trans "Reset" %}
{# ---- Table column ---- #}
{% render_table table %}
{% include 'inc/paginator.html' with paginator=table.paginator page=table.page %}
{% endblock content %}