Browse Source

#1499: Added utilization graph to child prefixes for aggregates

Jeremy Stretch 7 years ago
parent
commit
63a4a70420
1 changed files with 1 additions and 1 deletions
  1. 1 1
      netbox/ipam/views.py

+ 1 - 1
netbox/ipam/views.py

@@ -315,7 +315,7 @@ class AggregateView(View):
         )
         )
         child_prefixes = add_available_prefixes(aggregate.prefix, child_prefixes)
         child_prefixes = add_available_prefixes(aggregate.prefix, child_prefixes)
 
 
-        prefix_table = tables.PrefixTable(child_prefixes)
+        prefix_table = tables.PrefixDetailTable(child_prefixes)
         if request.user.has_perm('ipam.change_prefix') or request.user.has_perm('ipam.delete_prefix'):
         if request.user.has_perm('ipam.change_prefix') or request.user.has_perm('ipam.delete_prefix'):
             prefix_table.base_columns['pk'].visible = True
             prefix_table.base_columns['pk'].visible = True