Merge pull request #337 from Gluejar/fix_pub_lists

keep the book panels where they belong
pull/1/head
Raymond Yee 2014-04-29 19:07:03 -07:00
commit 3fbd546974
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>