keep the book panels where they belong

pull/1/head
eric 2014-04-29 21:51:52 -04:00
parent 8e39548740
commit 0b4d670226
1 changed files with 3 additions and 3 deletions

View File

@ -88,7 +88,7 @@
{% lazy_paginate 20 works_unglued using "works_unglued" %}
{% for work in works_unglued %}
<div class="{% cycle 'row1' 'row2' %}">
{% with work.googlebooks_id as googlebooks_id %}
{% with googlebooks_id=work.googlebooks_id tab_override='tabs-1' %}
{% include "book_panel.html" %}
{% endwith %}
</div>
@ -102,7 +102,7 @@
{% lazy_paginate 20 works_active using "works_active" %}
{% for work in works_active %}
<div class="{% cycle 'row1' 'row2' %}">
{% with work.googlebooks_id as googlebooks_id %}
{% with googlebooks_id=work.googlebooks_id tab_override='tabs-2' %}
{% include "book_panel.html" %}
{% endwith %}
</div>
@ -117,7 +117,7 @@
{% lazy_paginate 20 works_wished using "works_wished" %}
{% for work in works_wished %}
<div class="{% cycle 'row1' 'row2' %}">
{% with work.googlebooks_id as googlebooks_id %}
{% with googlebooks_id=work.googlebooks_id tab_override='tabs-3' %}
{% include "book_panel.html" %}
{% endwith %}
</div>