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

Google Books search results

  • View As:
  • use list view
  • use panel view
{% for work in results %}
{% 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 %}
{% empty %}

Sorry, couldn't find that!

{% endfor %}
{% endblock %}