From 33171693293d92079a190428de76d2a83ec054d3 Mon Sep 17 00:00:00 2001 From: Jeremy Stretch Date: Mon, 8 Dec 2025 15:17:03 -0500 Subject: [PATCH] Clean up formatting --- docs/plugins/development/forms.md | 40 +++++++++++++++---------------- 1 file changed, 20 insertions(+), 20 deletions(-) diff --git a/docs/plugins/development/forms.md b/docs/plugins/development/forms.md index 4be866987..afe05407e 100644 --- a/docs/plugins/development/forms.md +++ b/docs/plugins/development/forms.md @@ -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. -| Model Class | Form Class | -|---------------------|-------------------------| -| PrimaryModel | PrimaryModelForm | -| OrganizationalModel | OrganizationalModelForm | -| NestedGroupModel | NestedGroupModelForm | +| Model Class | Form Class | +|-----------------------|---------------------------| +| `PrimaryModel` | `PrimaryModelForm` | +| `OrganizationalModel` | `OrganizationalModelForm` | +| `NestedGroupModel` | `NestedGroupModelForm` | #### 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. -| Model Class | Form Class | -|---------------------|-------------------------------| -| PrimaryModel | PrimaryModelImportForm | -| OrganizationalModel | OrganizationalModelImportForm | -| NestedGroupModel | NestedGroupModelImportForm | +| Model Class | Form Class | +|-----------------------|---------------------------------| +| `PrimaryModel` | `PrimaryModelImportForm` | +| `OrganizationalModel` | `OrganizationalModelImportForm` | +| `NestedGroupModel` | `NestedGroupModelImportForm` | #### 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. -| Model Class | Form Class | -|---------------------|---------------------------------| -| PrimaryModel | PrimaryModelBulkEditForm | -| OrganizationalModel | OrganizationalModelBulkEditForm | -| NestedGroupModel | NestedGroupModelBulkEditForm | +| Model Class | Form Class | +|-----------------------|-----------------------------------| +| `PrimaryModel` | `PrimaryModelBulkEditForm` | +| `OrganizationalModel` | `OrganizationalModelBulkEditForm` | +| `NestedGroupModel` | `NestedGroupModelBulkEditForm` | #### 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. -| Model Class | Form Class | -|---------------------|----------------------------------| -| PrimaryModel | PrimaryModelFilterSetForm | -| OrganizationalModel | OrganizationalModelFilterSetForm | -| NestedGroupModel | NestedGroupModelFilterSetForm | +| Model Class | Form Class | +|-----------------------|------------------------------------| +| `PrimaryModel` | `PrimaryModelFilterSetForm` | +| `OrganizationalModel` | `OrganizationalModelFilterSetForm` | +| `NestedGroupModel` | `NestedGroupModelFilterSetForm` | #### Example