Correction : empêcher d'ajouter 2 fois la même collection (figurine/consoles)

This commit is contained in:
2018-01-16 19:07:39 +01:00
parent 63bed8818e
commit 083d10fc6e
3 changed files with 57 additions and 1 deletions

View File

@ -5,7 +5,8 @@ from django.utils.translation import ugettext as _
class Collection(models.Model):
name = models.CharField(max_length=255, verbose_name=_('name'))
name = models.CharField(
max_length=255, verbose_name=_('name'), unique=True)
shortname = models.CharField(max_length=30, verbose_name=_('shortname'))
def __str__(self):