forms.MultipleChoiceField auf 0.1.2
This commit is contained in:
@@ -4,3 +4,4 @@
|
|||||||
|----------------|------------------------|------------------------|
|
|----------------|------------------------|------------------------|
|
||||||
| 0.1.0 | 4.4.0 | 4.5.x |
|
| 0.1.0 | 4.4.0 | 4.5.x |
|
||||||
| 0.1.1 | 4.4.0 | 4.5.x |
|
| 0.1.1 | 4.4.0 | 4.5.x |
|
||||||
|
| 0.1.2 | 4.4.0 | 4.5.x |
|
||||||
|
|||||||
@@ -5,7 +5,7 @@ class VMwareImporterConfig(PluginConfig):
|
|||||||
name = "netbox_vmware_importer"
|
name = "netbox_vmware_importer"
|
||||||
verbose_name = "VMware Importer"
|
verbose_name = "VMware Importer"
|
||||||
description = "Synchronize VMware vSphere virtual machines into NetBox."
|
description = "Synchronize VMware vSphere virtual machines into NetBox."
|
||||||
version = "0.1.1"
|
version = "0.1.2"
|
||||||
author = "Internal NetBox Team"
|
author = "Internal NetBox Team"
|
||||||
base_url = "vmware-importer"
|
base_url = "vmware-importer"
|
||||||
min_version = "4.4.0"
|
min_version = "4.4.0"
|
||||||
|
|||||||
@@ -7,7 +7,6 @@ from tenancy.models import Tenant
|
|||||||
from utilities.forms.fields import (
|
from utilities.forms.fields import (
|
||||||
DynamicModelChoiceField,
|
DynamicModelChoiceField,
|
||||||
DynamicModelMultipleChoiceField,
|
DynamicModelMultipleChoiceField,
|
||||||
MultipleChoiceField,
|
|
||||||
SlugField,
|
SlugField,
|
||||||
)
|
)
|
||||||
from utilities.forms.rendering import FieldSet
|
from utilities.forms.rendering import FieldSet
|
||||||
@@ -129,7 +128,7 @@ class VCenterEndpointFilterForm(NetBoxModelFilterSetForm):
|
|||||||
required=False,
|
required=False,
|
||||||
label=_("Cluster"),
|
label=_("Cluster"),
|
||||||
)
|
)
|
||||||
last_status = MultipleChoiceField(
|
last_status = forms.MultipleChoiceField(
|
||||||
choices=SyncStatusChoices,
|
choices=SyncStatusChoices,
|
||||||
required=False,
|
required=False,
|
||||||
label=_("Last status"),
|
label=_("Last status"),
|
||||||
|
|||||||
+1
-1
@@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"
|
|||||||
|
|
||||||
[project]
|
[project]
|
||||||
name = "netbox-vmware-importer"
|
name = "netbox-vmware-importer"
|
||||||
version = "0.1.1"
|
version = "0.1.2"
|
||||||
description = "NetBox plugin to synchronize VMware vSphere virtual machines into NetBox."
|
description = "NetBox plugin to synchronize VMware vSphere virtual machines into NetBox."
|
||||||
readme = "README.md"
|
readme = "README.md"
|
||||||
requires-python = ">=3.12"
|
requires-python = ">=3.12"
|
||||||
|
|||||||
Reference in New Issue
Block a user