{% include "explore.html" %}
{% if not works %}
{% comment %}
if we're in empty-wishlist, slideshow mode, suppress tab area
{% endcomment %}
{% endif %}
{% ifequal wishlist.works.all.count 0 %}
{% ifequal request.user supporter %}
We'd also love to hear your feedback.
{% else %}
Add a book to your list to get started.
{% include "slideshow.html" %}
We'd also love to hear your feedback.
It looks like {{ supporter.username }} is just getting started, and hasn't added books just yet.
{% endifequal %} {% else %} {% if request.user.is_anonymous %}
{% endifequal %} {% else %} {% if request.user.is_anonymous %}
{% if works_unglued %}
{{ supporter }} wants you to know about these free books. Find out why.
{% else %}
{{ supporter }} isn't promoting any free books yet. Find out how you can.
{% endif %}
{% if works_active %}
{{ supporter }} is helping to make these books free. Find out how.
{% else %}
{{ supporter }} isn't ungluing books at the moment. Find out how you can.
{% endif %}
{% if works_wished %}
{{ supporter }} wants these books to be free. Find out how to help.
{% else %}
{{ supporter }} hasn't decided which books to give the world yet. Learn more.
{% endif %}
{% endif %}
{% lazy_paginate 20 works_unglued using "works_unglued" %}
{% for work in works_unglued %}
{% with work.googlebooks_id as googlebooks_id %}
{% include "book_panel.html" %}
{% endwith %}
{% endfor %}
{% get_pages %}
{% for page in pages %}
{{ page.number }}
{% endfor %}
{% lazy_paginate 20 works_active using "works_active" %}
{% for work in works_active %}
{% with work.googlebooks_id as googlebooks_id %}
{% include "book_panel.html" %}
{% endwith %}
{% endfor %}
{% get_pages %}
{% for page in pages %}
{{ page.number }}
{% endfor %}
{% lazy_paginate 20 works_wished using "works_wished" %}
{% for work in works_wished %}
{% with work.googlebooks_id as googlebooks_id %}
{% include "book_panel.html" %}
{% endwith %}
{% endfor %}
{% get_pages %}
{% for page in pages %}
{{ page.number }}
{% endfor %}
{% endifequal %}