from django.utils.translation import gettext_lazy as _
from wikidata.client import Client
from .constants import WIKIDATA
-from .utils import UnrelatedManager
from .wikidata import WikidataMixin
estimated_verses = models.IntegerField(_("estimated number of verses"), null=True, blank=True)
estimate_source = models.CharField(_("source of estimates"), max_length=2048, blank=True)
- objects = UnrelatedManager()
-
class Meta:
ordering = ("title",)
verbose_name = _('book')
def translators_str(self):
return ", ".join(str(author) for author in self.translators.all())
- def get_document_books(self):
- DBook = apps.get_model("documents", "Book")
- return DBook.objects.filter(dc_slug=self.slug)
-
def get_estimated_costs(self):
return {
work_type: work_type.calculate(self)
class CollectionCategory(models.Model):
name = models.CharField(_("name"), max_length=255)
parent = models.ForeignKey('self', models.SET_NULL, related_name='children', null=True, blank=True, verbose_name=_("parent"))
+ notes = models.TextField(_("notes"), blank=True)
class Meta:
ordering = ('parent__name', 'name')
name = models.CharField(_("name"), max_length=255)
slug = models.SlugField(max_length=255, unique=True)
category = models.ForeignKey(CollectionCategory, models.SET_NULL, null=True, blank=True, verbose_name=_("category"))
+ notes = models.TextField(_("notes"), blank=True)
class Meta:
ordering = ('category', 'name')