mirror of
				https://github.com/netbox-community/netbox.git
				synced 2024-05-10 07:54:54 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			49 lines
		
	
	
		
			1.8 KiB
		
	
	
	
		
			HTML
		
	
	
	
	
	
			
		
		
	
	
			49 lines
		
	
	
		
			1.8 KiB
		
	
	
	
		
			HTML
		
	
	
	
	
	
| {% extends 'generic/object_edit.html' %}
 | |
| {% load static %}
 | |
| {% load form_helpers %}
 | |
| {% load helpers %}
 | |
| 
 | |
| {% block content %}
 | |
|     <form action="{% querystring request %}" method="post" class="form form-horizontal">
 | |
|         {% csrf_token %}
 | |
|         {% for field in form.hidden_fields %}
 | |
|             {{ field }}
 | |
|         {% endfor %}
 | |
|         <div class="row">
 | |
|             <div class="col-md-6 col-md-offset-3">
 | |
|                 <h3>Assign an IP Address</h3>
 | |
|                 {% include 'ipam/inc/ipadress_edit_header.html' with active_tab='assign' %}
 | |
|                 {% if form.non_field_errors %}
 | |
|                     <div class="panel panel-danger">
 | |
|                         <div class="panel-heading"><strong>Errors</strong></div>
 | |
|                         <div class="panel-body">
 | |
|                             {{ form.non_field_errors }}
 | |
|                         </div>
 | |
|                     </div>
 | |
|                 {% endif %}
 | |
|             <div class="panel panel-default">
 | |
|                 <div class="panel-heading"><strong>Select IP Address</strong></div>
 | |
|                 <div class="panel-body">
 | |
|                     {% render_field form.vrf_id %}
 | |
|                     {% render_field form.q %}
 | |
|                 </div>
 | |
|             </div>
 | |
|             </div>
 | |
|         </div>
 | |
|         <div class="row">
 | |
|             <div class="col-md-6 col-md-offset-3 text-right">
 | |
|                 <button type="submit" class="btn btn-primary">Search</button>
 | |
|                 <a href="{{ return_url }}" class="btn btn-default">Cancel</a>
 | |
|             </div>
 | |
|         </div>
 | |
|     </form>
 | |
|     {% if table %}
 | |
|         <div class="row">
 | |
|             <div class="col-md-12" style="margin-top: 20px">
 | |
|                 <h3>Search Results</h3>
 | |
|                 {% include 'utilities/obj_table.html' with table_template='panel_table.html' %}
 | |
|             </div>
 | |
|         </div>
 | |
|     {% endif %}
 | |
| {% endblock %}
 |