mirror of
https://gitlab2.federez.net/re2o/re2o
synced 2024-11-22 11:23:10 +00:00
Fix display switchs order
This commit is contained in:
parent
006e7d1de4
commit
dbc15118ec
2 changed files with 2 additions and 2 deletions
|
@ -120,7 +120,7 @@ class EditOptionalTopologieForm(ModelForm):
|
||||||
self.fields['vlan_decision_nok'].label = _("VLAN for machines rejected"
|
self.fields['vlan_decision_nok'].label = _("VLAN for machines rejected"
|
||||||
" by RADIUS")
|
" by RADIUS")
|
||||||
|
|
||||||
self.initial['automatic_provision_switchs'] = Switch.objects.filter(automatic_provision=True)
|
self.initial['automatic_provision_switchs'] = Switch.objects.filter(automatic_provision=True).order_by('interface__domain__name')
|
||||||
|
|
||||||
def save(self, commit=True):
|
def save(self, commit=True):
|
||||||
instance = super().save(commit)
|
instance = super().save(commit)
|
||||||
|
|
|
@ -260,7 +260,7 @@ class OptionalTopologie(AclMixin, PreferencesModel):
|
||||||
def provisioned_switchs(self):
|
def provisioned_switchs(self):
|
||||||
"""Liste des switches provisionnés"""
|
"""Liste des switches provisionnés"""
|
||||||
from topologie.models import Switch
|
from topologie.models import Switch
|
||||||
return Switch.objects.filter(automatic_provision=True)
|
return Switch.objects.filter(automatic_provision=True).order_by('interface__domain__name')
|
||||||
|
|
||||||
@cached_property
|
@cached_property
|
||||||
def switchs_management_interface(self):
|
def switchs_management_interface(self):
|
||||||
|
|
Loading…
Reference in a new issue