{% 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
{% with request.user.wishlist.works.all as wishlist %} {% 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 %} {% with 'yes' as on_search_page %} {% include "book_panel.html" %} {% endwith %}{% endwith %}{% endwith %}{% endwith %}
{% empty %}

Sorry, couldn't find that!

{% endfor %} {% endwith %}
{% endblock %}