{% include "explore.html" %}
Enjoy {{ counts.unglued }}
Ungluing {{ counts.unglueing }}
Wishing for {{ counts.wished }}
{% ifequal work_list.count 0 %}
There aren't any works in this list yet. Why not add your favorite books to your wishlist, so we can feature them here?
{% else %}
{% lazy_paginate 20 works_unglued using "works_unglued" %}
{% for work in works_unglued %}
{% with work.last_campaign_status as status %}
{% with work.last_campaign.deadline as deadline %}
{% with work.googlebooks_id as googlebooks_id %}
{% include "book_panel.html" %}
{% endwith %}{% endwith %}{% 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.last_campaign_status as status %}
{% with work.last_campaign.deadline as deadline %}
{% with work.googlebooks_id as googlebooks_id %}
{% include "book_panel.html" %}
{% endwith %}{% endwith %}{% 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.last_campaign_status as status %}
{% with work.last_campaign.deadline as deadline %}
{% with work.googlebooks_id as googlebooks_id %}
{% include "book_panel.html" %}
{% endwith %}{% endwith %}{% endwith %}
{% endfor %}
{% get_pages %}
{% for page in pages %}
{{ page.number }}
{% endfor %}
{% endifequal %}