{% extends "base.html" %} {% load endless %} {% block title %} Active Campaigns {% endblock %} {% block extra_css %} {% endblock %} {% block extra_head %} {% endblock %} {% block topsection %}
{{ facet|capfirst }}
With your help we're raising money to buy the rights to give these books to the world.
{% endblock %} {% block content %}
{% include "explore.html" %}
  • View As:
  • view list
  • view icon
We're ungluing {{ campaign_list.count }}
{% if is_preview == 1 %}
We're not running campaigns during our alpha phase.

After we've implemented a few more features and improved the site based on your feedback, you'll see a list of active campaigns here.

If you're a rights holder and you'd like us to run campaigns to unglue your works, please contact us at rights@gluejar.com. Want more info? We have a rights holder FAQ.
{% else %} {% ifequal campaign_list.count 0 %} There aren't any ungluing campaigns active yet. If you're a rights holder, you can start one. {% else %} {% lazy_paginate 20 campaign_list using "campaign_list" %} {% for campaign in campaign_list %}
{% with campaign.status as status %} {% with campaign.deadline as deadline %} {% with campaign.work.googlebooks_id as googlebooks_id %} {% with campaign.work as work %} {% include "book_panel.html" %} {% endwith %}{% endwith %}{% endwith %}{% endwith %}
{% endfor %} {% endifequal %} {% endif %}
{% endblock %}