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

These books are Free, or want to be!

  • 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 %}
{% else %}
We couldn't find any matches in the Unglue.it database of free-licensed books.
{% endif %} {% if not results and not campaign_works %}
Google Books couldn't find any matches either.
{% else %}

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 %} {% endfor %}
{% endif %}
{% endblock %}