fnp
/
redakcja.git
/ blobdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
raw
|
inline
| side by side
Covers page fix.
[redakcja.git]
/
src
/
catalogue
/
models.py
diff --git
a/src/catalogue/models.py
b/src/catalogue/models.py
index
2ceb110
..
75726a4
100644
(file)
--- a/
src/catalogue/models.py
+++ b/
src/catalogue/models.py
@@
-163,9
+163,13
@@
class Book(WikidataMixin, models.Model):
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 {