X-Git-Url: https://git.mdrn.pl/redakcja.git/blobdiff_plain/2b4f30c6225a2dfd00afcf42feccac13ca199e01..9a3f21550b892b737e156797c4d6645bf1237085:/src/catalogue/models.py diff --git a/src/catalogue/models.py b/src/catalogue/models.py index 2ceb110b..75726a47 100644 --- 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()) + 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()) + translators_str.admin_order_field = 'translators__last_name' + translators_str.short_description = _('Translator') def get_estimated_costs(self): return {