mirror of
https://github.com/drygdryg/netbox-plugin-interface-sync
synced 2024-11-25 18:10:52 +03:00
7 lines
191 B
Python
7 lines
191 B
Python
from django import forms
|
|
|
|
|
|
class InterfaceComparisonForm(forms.Form):
|
|
add_to_device = forms.BooleanField(required=False)
|
|
remove_from_device = forms.BooleanField(required=False)
|