{% include "explore.html" %}
{% ifequal work_list.count 0 %}
{% block noworks %}
There aren't any {{ pub_lang|ez_lang_name }} works in this list yet. {% block add_more %}Why not add your favorite books to your list, so we can feature them here?{% endblock %}
{% endblock %}
{% else %}
{% lazy_paginate 20 works_unglued using "works_unglued" %}
{% for work in works_unglued %}
{% with googlebooks_id=work.googlebooks_id tab_override='tabs-1' %}
{% 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 googlebooks_id=work.googlebooks_id tab_override='tabs-2' %}
{% 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 googlebooks_id=work.googlebooks_id tab_override='tabs-3' %}
{% include "book_panel.html" %}
{% endwith %}
{% endfor %}
{% get_pages %}
{% for page in pages %}
{{ page.number }}
{% endfor %}
{% endifequal %}
for libraries...
{% block marcform %} {% endblock %}