{% extends 'generic/object_create.html' %} {% load static %} {% load form_helpers %} {% load helpers %} {% block title %}Assign an IP address{% endblock %} {% block content %}
{% for field in form.hidden_fields %} {{ field }} {% endfor %} {% for field_name, field_values in request.GET.lists %} {% if field_name != 'q' %} {% for field_value in field_values %} {% endfor %} {% endif %} {% endfor %}

Assign an IP Address

{% include 'ipam/inc/ipadress_edit_header.html' with active_tab='assign' %} {% if form.non_field_errors %}
Errors
{{ form.non_field_errors }}
{% endif %}
Select IP Address
{% render_field form.q %}
Cancel
{% if table %}
{% csrf_token %}

Search Results

{% include 'utilities/obj_table.html' with table_template='panel_table.html' disable_pagination=True %}
{% if perms.dcim.change_interface %} {% endif %}
{% include 'inc/paginator.html' with paginator=table.paginator page=table.page %}
{% endif %} {% endblock %} {% block javascript %} {% endblock %}