Skip to content

Instantly share code, notes, and snippets.

@lig
Created August 17, 2012 13:45
Show Gist options
  • Save lig/3378797 to your computer and use it in GitHub Desktop.
Save lig/3378797 to your computer and use it in GitHub Desktop.
description = models.TextField(validators=[MaxLengthValidator(128)], max_length=128, verbose_name='Краткая аннотация', help_text='Максимум 128 символов')
description = models.TextField(
validators=[MaxLengthValidator(128)],
max_length=128,
verbose_name='Краткая аннотация',
help_text='Максимум 128 символов')
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment