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)