Clean up formatting
Some checks failed
CI / build (20.x, 3.12) (push) Has been cancelled
CI / build (20.x, 3.13) (push) Has been cancelled

This commit is contained in:
Jeremy Stretch 2025-12-08 15:17:03 -05:00
parent 6dc00206a4
commit 3317169329

View File

@ -23,11 +23,11 @@ This is the base form for creating and editing NetBox models. It extends Django'
The corresponding model-specific subclasses of `NetBoxModelForm` are documented below. The corresponding model-specific subclasses of `NetBoxModelForm` are documented below.
| Model Class | Form Class | | Model Class | Form Class |
|---------------------|-------------------------| |-----------------------|---------------------------|
| PrimaryModel | PrimaryModelForm | | `PrimaryModel` | `PrimaryModelForm` |
| OrganizationalModel | OrganizationalModelForm | | `OrganizationalModel` | `OrganizationalModelForm` |
| NestedGroupModel | NestedGroupModelForm | | `NestedGroupModel` | `NestedGroupModelForm` |
#### Example #### Example
@ -65,11 +65,11 @@ This form facilitates the bulk import of new objects from CSV, JSON, or YAML dat
The corresponding model-specific subclasses of `NetBoxModelImportForm` are documented below. The corresponding model-specific subclasses of `NetBoxModelImportForm` are documented below.
| Model Class | Form Class | | Model Class | Form Class |
|---------------------|-------------------------------| |-----------------------|---------------------------------|
| PrimaryModel | PrimaryModelImportForm | | `PrimaryModel` | `PrimaryModelImportForm` |
| OrganizationalModel | OrganizationalModelImportForm | | `OrganizationalModel` | `OrganizationalModelImportForm` |
| NestedGroupModel | NestedGroupModelImportForm | | `NestedGroupModel` | `NestedGroupModelImportForm` |
#### Example #### Example
@ -107,11 +107,11 @@ This form facilitates editing multiple objects in bulk. Unlike a model form, thi
The corresponding model-specific subclasses of `NetBoxModelBulkEditForm` are documented below. The corresponding model-specific subclasses of `NetBoxModelBulkEditForm` are documented below.
| Model Class | Form Class | | Model Class | Form Class |
|---------------------|---------------------------------| |-----------------------|-----------------------------------|
| PrimaryModel | PrimaryModelBulkEditForm | | `PrimaryModel` | `PrimaryModelBulkEditForm` |
| OrganizationalModel | OrganizationalModelBulkEditForm | | `OrganizationalModel` | `OrganizationalModelBulkEditForm` |
| NestedGroupModel | NestedGroupModelBulkEditForm | | `NestedGroupModel` | `NestedGroupModelBulkEditForm` |
#### Example #### Example
@ -159,11 +159,11 @@ This form class is used to render a form expressly for filtering a list of objec
The corresponding model-specific subclasses of `NetBoxModelFilterSetForm` are documented below. The corresponding model-specific subclasses of `NetBoxModelFilterSetForm` are documented below.
| Model Class | Form Class | | Model Class | Form Class |
|---------------------|----------------------------------| |-----------------------|------------------------------------|
| PrimaryModel | PrimaryModelFilterSetForm | | `PrimaryModel` | `PrimaryModelFilterSetForm` |
| OrganizationalModel | OrganizationalModelFilterSetForm | | `OrganizationalModel` | `OrganizationalModelFilterSetForm` |
| NestedGroupModel | NestedGroupModelFilterSetForm | | `NestedGroupModel` | `NestedGroupModelFilterSetForm` |
#### Example #### Example