Partially implements #4 Based on @erichester76's https://github.com/ICTU/netbox_slm/pull/44 Signed-off-by: wkoot <3715211+wkoot@users.noreply.github.com> Co-authored-by: Eric Hester <eric.hester@umbrella.tech>
33 lines
1007 B
Python
33 lines
1007 B
Python
from .software_license import (
|
|
SoftwareLicenseListView,
|
|
SoftwareLicenseView,
|
|
SoftwareLicenseEditView,
|
|
SoftwareLicenseDeleteView,
|
|
SoftwareLicenseBulkDeleteView,
|
|
SoftwareLicenseBulkImportView,
|
|
)
|
|
from .software_product import (
|
|
SoftwareProductListView,
|
|
SoftwareProductView,
|
|
SoftwareProductEditView,
|
|
SoftwareProductDeleteView,
|
|
SoftwareProductBulkDeleteView,
|
|
SoftwareProductBulkImportView,
|
|
)
|
|
from .software_product_installation import (
|
|
SoftwareProductInstallationListView,
|
|
SoftwareProductInstallationView,
|
|
SoftwareProductInstallationEditView,
|
|
SoftwareProductInstallationDeleteView,
|
|
SoftwareProductInstallationBulkDeleteView,
|
|
SoftwareProductInstallationBulkImportView,
|
|
)
|
|
from .software_product_version import (
|
|
SoftwareProductVersionListView,
|
|
SoftwareProductVersionView,
|
|
SoftwareProductVersionEditView,
|
|
SoftwareProductVersionDeleteView,
|
|
SoftwareProductVersionBulkDeleteView,
|
|
SoftwareProductVersionBulkImportView,
|
|
)
|