$def with (items, key, sponsorship_count=None, reading_log_counts=None, lists=None, user=None, logged_in_user=None, public=False) $# Displays a user's reading log $# :param list items: $# :param Literal['currently-reading', 'want-to-read', 'already-read', 'sponsorships', 'loans', 'waitlist'] key: $# :param int? sponsorship_count: number of books the user is sponsoring $# :param Dict[Literal['currently-reading', 'want-to-read', 'already-read'], int] reading_log_counts: $# :param list? lists: $# :param user: $# :param bool public: $ title = _('My Books') $ urlbase = ctx.path.rsplit('/', 1)[0] $ username = user.key.split('/')[-1] $ owners_page = logged_in_user and urlbase.startswith('/people/'+logged_in_user.key.split('/')[-1]) $ meta_photo_url = "https://archive.org/services/img/%s" % get_internet_archive_id(user.key) $ current_page = int(input(page=1).page) $ total_items = sponsorship_count if key == 'sponsorships' else int(reading_log_counts[key]) $ userDisplayName = user.displayname or ctx.user.displayname $ userKey = user.key or ctx.user.key $ header_title = unicode(render_template('account/readinglog_shelf_name', key)).strip() $if key == 'currently-reading': $ og_title = _("Books %(username)s is reading", username=userDisplayName) $ og_description = _("%(username)s is reading %(total)d books. Join %(username)s on OpenLibrary.org and tell the world what you're reading.", username=userDisplayName, total=total_items) $elif key == 'want-to-read': $ og_title = _("Books %(username)s wants to read", username=userDisplayName) $ og_description = _("%(username)s wants to read %(total)d books. Join %(username)s on OpenLibrary.org and share the books that you'll soon be reading!", username=userDisplayName, total=total_items) $elif key == 'already-read': $ og_title = _("Books %(username)s has read", username=userDisplayName) $ og_description = _("%(username)s has read %(total)d books. Join %(username)s on OpenLibrary.org and tell the world about the books that you care about.", username=userDisplayName, total=total_items) $elif key == 'sponsorships': $ header_title = _("Sponsorships") $ og_title = _("Books %(userdisplayname)s is sponsoring", userdisplayname=userDisplayName) $ og_description = "{username} is sponsoring {total} books. Join {username} on OpenLibrary.org and share the books that you'll soon be reading!".format(username=userDisplayName, total=total_items) $if owners_page: $var title: $header_title $else: $var title: $userDisplayName » $header_title $if og_title: $putctx("description", og_description) $add_metatag(property="og:title", content=og_title) $add_metatag(property="og:url", content=request.canonical_url) $add_metatag(property="og:site_name", content="Open Library") $add_metatag(property="og:description", content=og_description) $add_metatag(property="og:image", content=meta_photo_url)