mirror of
https://github.com/netbox-community/netbox.git
synced 2025-12-21 04:42:22 -06:00
Closes #971: Implement VLANGroup VLANs view to show available VLANs within a group
This commit is contained in:
committed by
Jeremy Stretch
parent
769ca7fdf8
commit
e5c4e6ccf9
@@ -528,7 +528,7 @@ class VLANGroup(models.Model):
|
||||
return self.name
|
||||
|
||||
def get_absolute_url(self):
|
||||
return "{}?group_id={}".format(reverse('ipam:vlan_list'), self.pk)
|
||||
return reverse('ipam:vlangroup_vlans', args=[self.pk])
|
||||
|
||||
def to_csv(self):
|
||||
return (
|
||||
|
||||
Reference in New Issue
Block a user