{% include "explore.html" %}
{% 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 %}
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.
{% 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 %}
{% get_pages %}
{% for page in pages %}
{{ page.number }}
{% endfor %}
{% endifequal %}
{% endif %}