1
0
mirror of https://gitlab.crans.org/mediatek/med.git synced 2025-07-09 07:30:19 +02:00

Fix durée d'un jeu

This commit is contained in:
Med
2017-07-04 01:47:22 +02:00
parent dee26e3eda
commit 3c9021f8f4
3 changed files with 43 additions and 5 deletions

View File

@ -1,4 +1,5 @@
from django.db import models
from django.core.validators import MinValueValidator
class Auteur(models.Model):
nom = models.CharField(max_length=255)
@ -26,17 +27,18 @@ class Emprunt(models.Model):
class Jeu(models.Model):
DUREE = (
('LONG', 'LONG'),
('MOYEN', 'MOYEN'),
('COURT', 'COURT'),
('-1h', '-1h'),
('1-2h', '1-2h'),
('2-3h', '2-3h'),
('4h+', '4h+'),
)
nom = models.CharField(max_length=255)
proprietaire = models.ForeignKey('users.User', on_delete=models.PROTECT)
duree = models.CharField(choices=DUREE, max_length=255)
nombre_joueurs_min = models.IntegerField()
nombre_joueurs_max = models.IntegerField()
nombre_joueurs_min = models.IntegerField(validators=[MinValueValidator(1)])
nombre_joueurs_max = models.IntegerField(validators=[MinValueValidator(1)])
comment = models.CharField(help_text="Commentaire", max_length=255, blank=True, null=True)