Browse Source

Fixes #1807: Populate VRF from parent when creating a new prefix

Jeremy Stretch 7 years ago
parent
commit
e58d1ac87e
1 changed files with 1 additions and 1 deletions
  1. 1 1
      netbox/templates/ipam/prefix_prefixes.html

+ 1 - 1
netbox/templates/ipam/prefix_prefixes.html

@@ -6,7 +6,7 @@
     {% include 'ipam/inc/prefix_header.html' with active_tab='prefixes' %}
     <div class="row">
         <div class="col-md-12">
-            {% include 'utilities/obj_table.html' with table=prefix_table table_template='panel_table.html' heading='Child Prefixes' bulk_edit_url='ipam:prefix_bulk_edit' bulk_delete_url='ipam:prefix_bulk_delete' %}
+            {% include 'utilities/obj_table.html' with table=prefix_table table_template='panel_table.html' heading='Child Prefixes' bulk_edit_url='ipam:prefix_bulk_edit' bulk_delete_url='ipam:prefix_bulk_delete' parent=prefix %}
         </div>
     </div>
 {% endblock %}