mirror of
https://github.com/drygdryg/netbox-plugin-interface-sync
synced 2025-05-24 17:02:56 +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)
|