{% extends 'netbox_kea/combined_base.html' %} {% load render_table from django_tables2 %} {% block tab_content %}
Search Reservations
{# Preserve server selection when filtering #} {% for pk in selected_server_pks %} {% endfor %}
{{ search_form.q }} {% if search_form.q.errors %}
{{ search_form.q.errors.as_text }}
{% endif %}
{{ search_form.subnet_id }} {% if search_form.subnet_id.errors %}
{{ search_form.subnet_id.errors.as_text }}
{% endif %}
{{ search_form.scope }} {% if search_form.scope.errors %}
{{ search_form.scope.errors.as_text }}
{% endif %}
{% if request.GET.q or request.GET.subnet_id or request.GET.scope %} Clear {% endif %}
{% if errors %}
Some servers could not be reached:
{% endif %} {% if mutation_unavailable_servers %} {% endif %} {% if not snapshot_complete %} {% else %}
This bounded Snapshot is complete for the current page.
{% endif %} {% render_table table %} {% if next_page_url %}
Next page
{% endif %} {% endblock tab_content %}