diff --git a/openlibrary/core/models.py b/openlibrary/core/models.py index 8dee9476525..0d9691252fd 100644 --- a/openlibrary/core/models.py +++ b/openlibrary/core/models.py @@ -888,7 +888,7 @@ def new_list(self, name, description, seeds, tags=None): "type": {"key": "/type/list"}, "name": name, "description": description, - "seeds": seeds, + #"seeds": seeds, "tags": tags, } return self._site.new(key, doc) diff --git a/openlibrary/templates/account/sidebar.html b/openlibrary/templates/account/sidebar.html index 4a06eb8e01e..45f58589a8b 100644 --- a/openlibrary/templates/account/sidebar.html +++ b/openlibrary/templates/account/sidebar.html @@ -38,20 +38,40 @@
  • $sponsorship_count$_('Sponsoring')
  • - $ component_times['Sidebar'] = time() - component_times['Sidebar'] + $ component_times['Sidebar'] = time() - component_times['Sidebar'] \ No newline at end of file diff --git a/openlibrary/templates/type/list/view_body.html b/openlibrary/templates/type/list/view_body.html index 6fe33150709..975e6365e20 100644 --- a/openlibrary/templates/type/list/view_body.html +++ b/openlibrary/templates/type/list/view_body.html @@ -85,7 +85,7 @@

    $list.name

    window.q.push(function(){ \$(".listDelete a").on('click', function() { - if (get_seed_count() > 1) { + if (get_seed_count() >= 0) { \$("#remove-seed-dialog") .data("seed-key", \$(this).closest("[data-seed-key]").data('seed-key')) .dialog("open"); diff --git a/openlibrary/templates/type/user/view.html b/openlibrary/templates/type/user/view.html index bf4a54a0a94..70b0f562404 100644 --- a/openlibrary/templates/type/user/view.html +++ b/openlibrary/templates/type/user/view.html @@ -59,9 +59,14 @@

    $_('Reading Log')

    $if "lists" in ctx.features and lists:
    -

    $_('Lists') - $_('See all') -

    + $if owners_page: +

    $_('My Lists') + $_('Edit') +

    + $else: +

    $_('Lists') + $_('See all') +