2012-03-09 13:56:59 +00:00
{% with work.first_ebook as first_ebook %}
{% with work.last_campaign.supporters as supporters %}
{% with work.cover_image_thumbnail as thumbnail %}
{% with work.author as author %}
< div class = "thewholebook listview tabs {% if first_ebook %}tabs-1{% else %}{% if status == 'SUCCESSFUL' or status == 'ACTIVE' %}tabs-2{% else %}tabs-3{% endif %}{% endif %}" >
2011-12-01 02:05:19 +00:00
< div class = "listview book-list" >
< div class = "listview panelback side2" >
< div class = "greenpanel2" >
2011-12-27 02:10:32 +00:00
< div class = "greenpanel_top" >
2011-12-01 02:05:19 +00:00
< div class = "unglued_white" >
2011-12-28 00:17:44 +00:00
2012-02-24 16:37:06 +00:00
{% comment %}top section: campaign info + optional action button. Varies by campaign status.{% endcomment %}
2012-03-09 13:56:59 +00:00
{% if first_ebook %}
2011-12-28 00:17:44 +00:00
< b > AVAILABLE!< / b >
< / div >
2012-03-09 13:56:59 +00:00
< div class = "read_itbutton" > {% if first_ebook %}< a href = "{{ work.ebooks.0.url }}" > {% endif %}Read it Now< / a > < / div >
2011-12-28 00:17:44 +00:00
{% else %}{% if status == 'SUCCESSFUL' %}
< b > UNGLUED!< / b >
< p > < b > On:< / b > {{ deadline|date:"M d, Y" }}< / p >
< p > < b > Raised:< / b > {{ work.last_campaign.current_total }}< / p >
< / div >
2012-03-09 13:56:59 +00:00
< div class = "read_itbutton" > {% if first_ebook %}< a href = "{{ work.ebooks.0.url }}" > {% endif %}Read it Now< / a > < / div >
2011-12-28 00:17:44 +00:00
2011-12-27 02:10:32 +00:00
{% else %}{% if status == 'ACTIVE' %}
2011-12-28 00:17:44 +00:00
< b > UNGLUE IT!< / b >
< p > < b > ${{ work.last_campaign.current_total }}< / b > raised< / p > < p > < b > ${{ work.last_campaign.target }}< / b > needed< / p >
< p > by {{ deadline|date:"M d, Y" }}< / p >
< / div >
< div class = "read_itbutton pledge" > < a href = "/pledge/{{work.id}}" > Support< / a > < / div >
{% else %}{% if status == 'INITIALIZED' %}
< p > Campaign coming soon!< / p >
< / div >
{% else %}{% if status == 'SUSPENDED' %}
< p > This campaign has been suspended.< / p > < br / > < p > See the < a href = "{{faqurl}}" > FAQ< / a > for details.< / p >
< / div >
{% else %}{% if status == 'WITHDRAWN' %}
< p > This campaign has been withdrawn.< / p > < br / > < p > See the < a href = "{{faqurl}}" > FAQ< / a > for details.< / p >
< / div >
{% else %}{% if status == 'UNSUCCESSFUL' %}
< p > {{ deadline }}< / p >
< p > Watch for a new campaign.< / p >
< / div >
{% else %}
< p > No campaign yet.< / p > < br / > < p > But if lots of ungluers wishlist this book, maybe there will be!< / p >
< / div >
{% endif %}{% endif %}{% endif %}{% endif %}{% endif %}{% endif %}{% endif %}
2011-12-27 02:10:32 +00:00
< / div >
2011-12-28 00:17:44 +00:00
2012-05-01 13:56:19 +00:00
{% comment %}link to work page{% endcomment %}
< div class = "moreinfo" >
< a href = "{% if work.id %}{% url work work.id %}{% else %}{% url googlebooks googlebooks_id %}{% endif %}" target = "_top" > More Info< / a >
< / div >
{% comment %}bibliographic data{% endcomment %}
< div class = "white_text" >
< p > < a href = "{% if work.id %}{% url work work.id %}{% else %}{% url googlebooks googlebooks_id %}{% endif %}" > {{ work.title }}< / a > < / p >
< p > {{ author }}< / p >
< / div >
2012-02-24 16:37:06 +00:00
{% comment %}status of book vis-a-vis user's wishlist{% endcomment %}
2012-03-20 13:52:57 +00:00
{% if works and activetab %}
2012-03-19 19:32:33 +00:00
< div class = "moreinfo add-wishlist" >
< span id = "p{{ googlebooks_id }}" > Add to Wishlist< / span >
< / div >
{% else %}
2012-03-09 13:56:59 +00:00
{% if request.user.id in supporters %}
2012-01-02 16:09:48 +00:00
< div class = "moreinfo on-wishlist" >
< span > Pledged!< / span >
< / div >
{% else %}
2011-12-01 02:05:19 +00:00
{% ifequal supporter request.user %}
< div class = "moreinfo remove-wishlist" >
2012-03-09 20:06:25 +00:00
< span id = "p{{ work.id }}" > Remove This< / span >
2011-12-01 02:05:19 +00:00
< / div >
{% else %}{% if request.user.is_anonymous %}
< div class = "moreinfo create-account" >
2011-12-06 19:40:29 +00:00
< span title = "{% if work.id %}{% url work work.id %}{% else %}{% url googlebooks googlebooks_id %}{% endif %}" > Login to Add< / span >
2011-12-01 02:05:19 +00:00
< / div >
2011-12-01 13:42:03 +00:00
{% else %}{% if work in request.user.wishlist.works.all %}
2011-12-01 02:05:19 +00:00
< div class = "moreinfo on-wishlist" >
2011-12-01 13:42:03 +00:00
< a href = "#" > On Wishlist!< / a >
2011-12-01 02:05:19 +00:00
< / div >
{% else %}
< div class = "moreinfo add-wishlist" >
2012-03-09 20:06:25 +00:00
< span id = "p{{ googlebooks_id }}" > Add to Wishlist< / span >
2011-12-01 02:05:19 +00:00
< / div >
2012-03-19 19:32:33 +00:00
{% endif %}{% endif %}{% endifequal %}{% endif %}{% endif %}
2011-12-28 00:17:44 +00:00
2011-12-01 02:05:19 +00:00
< / div >
< / div >
< div class = "listview panelfront side1 book-thumb" >
2012-03-09 13:56:59 +00:00
< a href = "{% if work.id %}{% url work work.id %}{% else %}{% url googlebooks googlebooks_id %}{% endif %}" target = "_top" > < img src = "{% if thumbnail %}{{ thumbnail }}{% else %}/static/images/generic_cover_larger.png{% endif %}" alt = "Book cover" title = "book cover" / > < / a >
2011-11-22 01:21:06 +00:00
< / div >
2011-12-01 02:05:19 +00:00
< div class = "listview panelfront side1 book-name" >
2011-11-22 01:21:06 +00:00
< div class = "title" >
2011-12-06 19:40:29 +00:00
< a href = "{% if work.id %}{% url work work.id %}{% else %}{% url googlebooks googlebooks_id %}{% endif %}" > {{ work.title }}< / a >
2011-11-22 01:21:06 +00:00
< / div >
2012-03-09 13:56:59 +00:00
< div class = "listview author {{ author }}" > {{ author }}< / div >
2011-11-22 01:21:06 +00:00
< / div >
2012-03-09 13:56:59 +00:00
{% if request.user.id in supporters %}
2012-01-02 15:59:00 +00:00
< div class = "listview panelfront side1 on-wishlist" >
< span > Pledged!< / span >
< / div >
{% else %}
2011-11-22 01:21:06 +00:00
{% ifequal supporter request.user %}
2011-12-01 02:05:19 +00:00
< div class = "listview panelfront side1 remove-wishlist" >
2012-03-09 20:06:25 +00:00
< span id = "l{{ work.id }}" > Remove This< / span >
2011-11-22 01:21:06 +00:00
< / div >
{% else %}{% if request.user.is_anonymous %}
2011-12-01 02:05:19 +00:00
< div class = "listview panelfront side1 create-account" >
2011-12-06 19:40:29 +00:00
< span title = "{% if work.id %}{% url work work.id %}{% else %}{% url googlebooks googlebooks_id %}{% endif %}" > Login to Add< / span >
2011-11-22 01:21:06 +00:00
< / div >
2011-12-01 13:42:03 +00:00
{% else %}{% if work in request.user.wishlist.works.all %}
< div class = "listview panelfront side1 on-wishlist" >
2012-02-14 16:36:12 +00:00
< span > On Wishlist!< / span >
2011-12-01 13:42:03 +00:00
< / div >
2011-11-22 01:21:06 +00:00
{% else %}
2011-12-01 02:05:19 +00:00
< div class = "listview panelfront side1 add-wishlist" >
2012-03-09 20:06:25 +00:00
< span id = "l{{ googlebooks_id }}" > Add to Wishlist< / span >
2011-11-22 01:21:06 +00:00
< / div >
2012-01-02 15:59:00 +00:00
{% endif %}{% endif %}{% endifequal %}{% endif %}
2011-12-01 02:05:19 +00:00
< div class = "listview panelfront side1 booklist-status" >
2012-03-19 20:36:05 +00:00
{% ifequal status "ACTIVE" %}
< span class = "booklist-status-text" style = "width: 190px" > < b > ${{ work.last_campaign.current_total }}< / b > raised of < b > ${{ work.last_campaign.target }}< / b > goal< / span >
2012-04-04 12:50:06 +00:00
{% else %}{% ifequal status "INITIALIZED" %}
< span class = "booklist-status-label" > Status: < / span > < span class = "booklist-status-text" > Coming soon!< / span >
{% else %}
2012-04-05 17:10:42 +00:00
< span class = "booklist-status-label" > Status: < / span > < span class = "booklist-status-text" > {{ status }}< / span >
2012-04-04 12:50:06 +00:00
{% endifequal %}{% endifequal %}
2011-11-22 01:21:06 +00:00
< / div >
2011-12-01 02:05:19 +00:00
< div class = "listview panelfront side1 icons" >
2011-12-26 17:53:28 +00:00
{% if status == 'No campaign yet' or status == 'INITIALIZED' %}
2012-02-11 19:15:06 +00:00
< a href = "{% url work work.id %}?tab=3" class = "nobold" > < span class = "rounded" > < span class = "grey" > < span class = "panelnope" > Wished by < / span > {{ work.num_wishes }}< / span > < / span > < / a >
2012-03-09 13:56:59 +00:00
{% else %}{% if first_ebook %}
2012-01-17 21:28:45 +00:00
< span class = "listview boolist-ebook" >
2012-02-28 22:28:33 +00:00
{% for ebook in work.ebooks|slice:":3" %}
2012-04-26 21:26:27 +00:00
< a href = "{{ ebook.url }}" > < img src = "/static/images/{{ ebook.format }}32.png" height = "32" alt = "{{ ebook.rights}} {{ ebook.format }} at {{ebook.provider}}" title = "{{ ebook.rights}} {{ ebook.format }} at {{ebook.provider}}" / > < / a >
2012-02-28 22:28:33 +00:00
{% endfor %}
2012-01-17 21:28:45 +00:00
< / span >
2012-01-16 17:10:38 +00:00
{% else %}
2011-12-26 17:53:28 +00:00
< div class = "booklist-status-img" >
< img src = "/static/images/images/icon-book-37by25-{{ work.percent_unglued }}.png" title = "book list status" alt = "book list status" / >
< / div >
2011-12-27 02:10:32 +00:00
< div class = "booklist-status-label" > {{ work.percent_unglued_number }}%< / div >
2012-01-16 17:10:38 +00:00
{% endif %}{% endif %}
2011-11-22 01:21:06 +00:00
< / div >
2011-12-01 02:05:19 +00:00
< div class = "listview panelfront side1 ebooks" >
2011-11-22 01:21:06 +00:00
< / div >
2011-12-01 02:05:19 +00:00
< div class = "unglue-this panelfront side1 none" >
2011-11-22 01:21:06 +00:00
< div class = "unglue-this-inner1" >
< div class = "unglue-this-inner2" >
< / div >
2011-09-12 03:44:21 +00:00
< / div >
< / div >
< / div >
2012-03-09 13:56:59 +00:00
< / div >
{% endwith %}
{% endwith %}
{% endwith %}
{% endwith %}