Skip to content

Commit

Permalink
housekeeping
Browse files Browse the repository at this point in the history
  • Loading branch information
menckend committed Oct 23, 2024
1 parent 613f8bd commit e3c82d1
Show file tree
Hide file tree
Showing 3 changed files with 2 additions and 2 deletions.
Binary file modified docs/_static/images/ptov-pic1.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified docs/_static/images/ptov-pic2.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
4 changes: 2 additions & 2 deletions netbox_ptov/forms.py
Original file line number Diff line number Diff line change
Expand Up @@ -49,6 +49,6 @@ class golabForm(forms.Form):

username_in = forms.CharField(label="Enter EOS username:", widget=forms.TextInput)
password_in = forms.CharField(label="Enter EOS password:", widget=forms.PasswordInput)
switchlist_multiplechoice_in = forms.ModelMultipleChoiceField(queryset=devices.Device.objects.filter(device_type__manufacturer__slug="arista"), to_field_name='name')
serverselect_in = forms.ModelChoiceField(queryset=gns3srv.objects.all(), to_field_name='name')
switchlist_multiplechoice_in = forms.ModelMultipleChoiceField(label="Select the Arista switches to include in your virtual-lab", queryset=devices.Device.objects.filter(device_type__manufacturer__slug="arista"), to_field_name='name')
serverselect_in = forms.ModelChoiceField(label="Select the GNS3 server to create your virtual-lab on", queryset=gns3srv.objects.all(), to_field_name='name')
prjname_in = forms.CharField(label="Enter Name for GNS3 project:", widget=forms.TextInput)

0 comments on commit e3c82d1

Please sign in to comment.