mirror of
https://github.com/drygdryg/netbox-plugin-interface-sync
synced 2025-02-17 21:22:21 +03:00
This plugin has been re-developed for Netbox 4. The sync button has been redesigned as well as the colors of the sync table.
7 lines
185 B
Python
7 lines
185 B
Python
from django import forms
|
|
|
|
|
|
class InterfaceComparisonForm(forms.Form):
|
|
add_to_device = forms.BooleanField(required=False)
|
|
remove_from_device = forms.BooleanField(required=False)
|