mirror of
https://gitlab2.federez.net/re2o/re2o
synced 2024-11-23 11:53:12 +00:00
Bug fix : n'affiche que les ip libres avec les droits infra
This commit is contained in:
parent
edca49dcf1
commit
2d14e1f1b5
1 changed files with 3 additions and 0 deletions
|
@ -57,6 +57,9 @@ class EditInterfaceForm(ModelForm):
|
|||
self.fields['mac_address'].label = 'Adresse mac'
|
||||
self.fields['type'].label = 'Type de machine'
|
||||
self.fields['type'].empty_label = "Séléctionner un type de machine"
|
||||
if "ipv4" in self.fields:
|
||||
self.fields['ipv4'].empty_label = "Assignation automatique de l'ipv4"
|
||||
self.fields['ipv4'].queryset = IpList.objects.filter(interface__isnull=True)
|
||||
if "machine" in self.fields:
|
||||
self.fields['machine'].queryset = Machine.objects.all().select_related('user')
|
||||
|
||||
|
|
Loading…
Reference in a new issue