www-bocal/mainsite/models.py

25 lines
856 B
Python
Raw Normal View History

2017-09-21 10:58:19 +02:00
from django.db import models
2017-09-21 11:34:40 +02:00
from django.db.models import URLField, \
DateField, \
CharField, \
BooleanField
2017-09-21 10:58:19 +02:00
2017-09-21 11:34:40 +02:00
class Publication(models.Model):
num = CharField('Numéro du BOcal', max_length=128)
url = URLField('Adresse sur le site')
date = DateField('Publication')
is_special = BooleanField('Numéro spécial',
help_text='Numéro du BOcal non-numéroté',
default=False)
descr = CharField('Description (optionnelle)',
max_length=512),
custom_name = CharField('Nom customisé',
help_text='Vide pour laisser le numéro seulement',
max_length=128),
def __str__(self):
if self.custom_name:
return self.custom_name
return 'BOcal n°{}'.format(self.num)