{% extends "base.html" %} {% block extra_css %} {% endblock %} {% block extra_head %} {% endblock %} {% block title %}Google Books search results{% endblock %} {% block content %}
{% include "explore.html" %}
{% if campaign_works %}

Unglue.it Campaigns

  • View As:
  • use list view
  • use panel view
{% for work in campaign_works %}
{% with work.googlebooks_id as googlebooks_id %} {% with work.last_campaign_status as status %} {% with work.last_campaign.deadline as deadline %} {% include "book_panel.html" %} {% endwith %}{% endwith %}{% endwith %}
{% endfor %}
{% endif %}

Google Books search results

{% if not campaign_works %}
  • View As:
  • use list view
  • use panel view
{% endif %}
{% for work in results %} {% if not work.last_campaign %}
{% with work.googlebooks_id as googlebooks_id %} {% with 'yes' as on_search_page %} {% include "book_panel.html" %} {% endwith %}{% endwith %}
{% endif %} {% empty %}

Sorry, couldn't find that!

{% endfor %}
{% endblock %}