From eca330b9ebb7eef46ff1793eea13d7ac0c2fba10 Mon Sep 17 00:00:00 2001 From: <> Date: Thu, 26 Feb 2026 09:41:01 +0000 Subject: [PATCH] Deployed a450422 with MkDocs version: 1.6.1 --- api-guide/fields/index.html | 2 +- search/search_index.json | 2 +- sitemap.xml | 138 ++++++++++++++++++------------------ sitemap.xml.gz | Bin 748 -> 748 bytes 4 files changed, 71 insertions(+), 71 deletions(-) diff --git a/api-guide/fields/index.html b/api-guide/fields/index.html index 309cf19b4..6098c15b0 100644 --- a/api-guide/fields/index.html +++ b/api-guide/fields/index.html @@ -927,7 +927,7 @@ Corresponds to django.db.models.fields.DurationField

Both the allow_blank and allow_null are valid options on ChoiceField, although it is highly recommended that you only use one and not both. allow_blank should be preferred for textual choices, and allow_null should be preferred for numeric or other non-textual choices.

MultipleChoiceField

-

A field that can accept a set of zero, one or many values, chosen from a limited set of choices. Takes a single mandatory argument. to_internal_value returns a set containing the selected values.

+

A field that can accept a list of zero, one or many values, chosen from a limited set of choices. Takes a single mandatory argument. to_internal_value returns a list containing the selected values, deduplicated.

Signature: MultipleChoiceField(choices)