27 lines
1,010 B
Python
27 lines
1,010 B
Python
from django.db import models
|
|
from django.db.models import DateField, \
|
|
CharField, \
|
|
BooleanField
|
|
|
|
|
|
class Publication(models.Model):
|
|
num = CharField('Numéro du BOcal', max_length=128)
|
|
url = CharField('Adresse sur le site', max_length=512)
|
|
# ^ This is not a URLField because we need internal URLS, eg `/static/blah`
|
|
|
|
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,
|
|
blank=True)
|
|
custom_name = CharField('Nom customisé',
|
|
help_text='Vide pour laisser le numéro seulement',
|
|
max_length=128,
|
|
blank=True)
|
|
|
|
def __str__(self):
|
|
if self.custom_name:
|
|
return self.custom_name
|
|
return 'BOcal n°{}'.format(self.num)
|