{% extends "base.html" %} {% load endless %} {% block title %} Works {% endblock %} {% block extra_css %} {% endblock %} {% block extra_head %} {% endblock %} {% block topsection %}
{{ activetab }}
{% if facet == 'recommended' %}
Staff Picks
Here are the books {% for staffer in unglue_staff %}{% if not forloop.last %}{{ staffer }}, {% else %} and {{ staffer }}{% endif %}{% endfor %} are loving lately.
{% else %}
{{ facet|capfirst }}
With your help we're raising money to buy the rights to give these books to the world.
{% endif %}
{% endblock %} {% block content %}
{% include "explore.html" %}
Enjoy {{ counts.unglued }} Ungluing {{ counts.unglueing }} Wishing for {{ counts.wished }}
  • View As:
  • view list
  • view icon
{% ifequal work_list.count 0 %} {% if facet == 'recommended' %} Check back soon to see what we're recommending. {% else %} There aren't any works in this list yet. Why not add your favorite books to your wishlist, so we can feature them here? {% endif %} {% 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 %}
{% 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 %}
{% 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 %}
{% endifequal %}
{% endblock %}