fnp
/
redakcja.git
/ blobdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
raw
|
inline
| side by side
Tests.
[redakcja.git]
/
src
/
catalogue
/
models.py
diff --git
a/src/catalogue/models.py
b/src/catalogue/models.py
index
2ceb110
..
b0d3697
100644
(file)
--- a/
src/catalogue/models.py
+++ b/
src/catalogue/models.py
@@
-63,6
+63,10
@@
class Author(WikidataMixin, models.Model):
def get_absolute_url(self):
return reverse("catalogue_author", args=[self.slug])
def get_absolute_url(self):
return reverse("catalogue_author", args=[self.slug])
+ @property
+ def name(self):
+ return f"{self.last_name}, {self.first_name}"
+
@property
def pd_year(self):
if self.year_of_death:
@property
def pd_year(self):
if self.year_of_death:
@@
-160,12
+164,20
@@
class Book(WikidataMixin, models.Model):
def get_absolute_url(self):
return reverse("catalogue_book", args=[self.slug])
def get_absolute_url(self):
return reverse("catalogue_book", args=[self.slug])
+
+ @property
+ def wluri(self):
+ return f'https://wolnelektury.pl/katalog/lektura/{self.slug}/'
def authors_str(self):
return ", ".join(str(author) for author in self.authors.all())
def authors_str(self):
return ", ".join(str(author) for author in self.authors.all())
+ authors_str.admin_order_field = 'authors__last_name'
+ authors_str.short_description = _('Author')
def translators_str(self):
return ", ".join(str(author) for author in self.translators.all())
def translators_str(self):
return ", ".join(str(author) for author in self.translators.all())
+ translators_str.admin_order_field = 'translators__last_name'
+ translators_str.short_description = _('Translator')
def get_estimated_costs(self):
return {
def get_estimated_costs(self):
return {