diff --git a/src/pyj/book_list/custom_list.pyj b/src/pyj/book_list/custom_list.pyj new file mode 100644 index 0000000000..7f5f4a13cb --- /dev/null +++ b/src/pyj/book_list/custom_list.pyj @@ -0,0 +1,20 @@ +# vim:fileencoding=utf-8 +# License: GPL v3 Copyright: 2017, Kovid Goyal +from __python__ import bound_methods, hash_literals + +from gettext import gettext as _ + + +def default_template(): + return { + 'cover': True, + 'comments': False, + 'comments_fields': ['comments'], + 'height': '12.5ex', + 'lines': [ + _('{title} by {authors}'), + _('{series_index} of {series}') + '|||{rating}', + '{tags}', + _('Date: {timestamp} Published: {pubdate}'), + ] + }