publisher_serial = CharField(_('publisher serial number'))
booklet_author = CharField(_('author of published notice'))
external_references = TextField(_('bibliographic references'))
- doctype_code = IntegerField(_('document type'))
- public_access = CharField(_('access status'), choices=PUBLIC_ACCESS_CHOICES,
+ doctype_code = IntegerField(_('document type'), null=True, blank=True)
+ public_access = CharField(_('public access'), choices=PUBLIC_ACCESS_CHOICES,
max_length=16, default="metadata")
+ auto_period_access = BooleanField(_('automatic access after a rolling period'), default=True)
legal_rights = WeakForeignKey('LegalRight', related_name="collections",
verbose_name=_('legal rights'))