custom fields: add option which forces user to make an active choice.

in forms.py we prepend a 0 entry to the list of choices.
This commit is contained in:
Andreas Kotowicz
2011-12-01 20:48:37 +01:00
parent 87a5aa88b4
commit 71d69278bc
2 changed files with 16 additions and 5 deletions

View File

@@ -1175,6 +1175,11 @@ class CustomField(models.Model):
blank=True,
null=True,
)
empty_selection_list = models.BooleanField(
_('Add empty first choice to List?'),
help_text=_('Only for List: adds an empty first entry to the choices list, which enforces that the user makes an active choice.'),
)
list_values = models.TextField(
_('List Values'),