from django.conf import settings
from django.db import models
from django.urls import reverse
-from django.utils.translation import ugettext_lazy as _
+from django.utils.translation import gettext_lazy as _
import re
from wolnelektury.utils import cached_render, clear_cached_renders
"""A collection of books, which might be defined before publishing them."""
title = models.CharField(_('title'), max_length=120, db_index=True)
slug = models.SlugField(_('slug'), max_length=120, primary_key=True)
- description = models.TextField(_('description'), null=True, blank=True)
+ description = models.TextField(_('description'), blank=True)
book_slugs = models.TextField(_('book slugs'))
+ authors = models.ManyToManyField(
+ 'Tag',
+ limit_choices_to={'category': 'author'},
+ blank=True
+ )
kind = models.CharField(_('kind'), max_length=10, blank=False, default='book', db_index=True,
choices=(('book', _('book')), ('picture', _('picture'))))
listed = models.BooleanField(_('listed'), default=True, db_index=True)