2012-05-13 19:32:32 +00:00
|
|
|
{% load humanize %}
|
2013-08-20 02:54:43 +00:00
|
|
|
{% load purchased %}
|
2013-10-18 16:36:55 +00:00
|
|
|
{% load lib_acqs %}
|
2013-12-20 23:01:15 +00:00
|
|
|
{% load bookpanel %}
|
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 %}
|
2014-01-18 02:37:19 +00:00
|
|
|
{% with work.authors_short as author %}
|
2012-05-31 17:33:16 +00:00
|
|
|
{% with work.title as title %}
|
2012-05-29 23:57:38 +00:00
|
|
|
{% with work.last_campaign as last_campaign %}
|
2012-05-17 16:06:29 +00:00
|
|
|
{% with work.last_campaign.status as status %}
|
2012-05-24 16:35:58 +00:00
|
|
|
{% with work.last_campaign.deadline as deadline %}
|
2012-05-31 17:25:19 +00:00
|
|
|
{% with work.id as workid %}
|
2013-01-03 01:26:20 +00:00
|
|
|
{% with request.user.wishlist.works.all as wishlist %}
|
2013-12-20 23:01:15 +00:00
|
|
|
{% purchased %}{% lib_acqs %}{% bookpanel %}
|
2014-02-11 16:37:39 +00:00
|
|
|
<div class="thewholebook listview tabs {% if tab_override %}{{tab_override}}{% else %}{% if first_ebook or status == 'SUCCESSFUL' %}tabs-1{% else %}{% if status == 'ACTIVE' %}tabs-2{% else %}tabs-3{% endif %}{% endif %}{% endif %}">
|
2011-12-01 02:05:19 +00:00
|
|
|
<div class="listview book-list">
|
|
|
|
<div class="listview panelback side2">
|
2012-05-31 17:29:41 +00:00
|
|
|
{% comment %} hover state of panel {% endcomment %}
|
|
|
|
<div class="greenpanel2">
|
2013-03-11 20:09:40 +00:00
|
|
|
{% if last_campaign %}
|
|
|
|
{% comment %}top section: campaign info + optional action button. Varies by campaign status.{% endcomment %}
|
2013-10-18 16:36:55 +00:00
|
|
|
{% if status == 'SUCCESSFUL' or license_is_active or borrowable %}
|
2013-03-11 20:09:40 +00:00
|
|
|
<div class="greenpanel_top">
|
|
|
|
{% comment %}bibliographic data{% endcomment %}
|
|
|
|
<div class="white_text">
|
|
|
|
<p><a href="{% if workid %}{% url work workid %}{% else %}{% url googlebooks googlebooks_id %}{% endif %}">{{ title }}</a></p>
|
|
|
|
<p>{{ author }}</p>
|
|
|
|
</div>
|
|
|
|
{% comment %}link to work page{% endcomment %}
|
|
|
|
<div class="moreinfo">
|
|
|
|
<a href="{% if workid %}{% url work workid %}{% else %}{% url googlebooks googlebooks_id %}{% endif %}" target="_top">More Info</a>
|
|
|
|
</div>
|
2013-10-18 16:36:55 +00:00
|
|
|
{% if purchased %}
|
|
|
|
<div class="unglued_white">
|
2014-12-20 18:03:20 +00:00
|
|
|
<b>{% if purchased.gifts.all.count %}A gift to you!{% else %}Purchased!{% endif %}</b>
|
2013-10-18 16:36:55 +00:00
|
|
|
</div>
|
|
|
|
{% else %}{% if borrowed %}
|
2013-10-19 20:54:09 +00:00
|
|
|
<b>Borrowed! </b>
|
|
|
|
<p><b>until</b> {{ borrowed.expires|date:"M d, Y" }}</p>
|
2013-10-18 16:36:55 +00:00
|
|
|
{% else %}{% if borrowable %}
|
|
|
|
<div class="unglued_white">
|
|
|
|
<b>Library has it!</b>
|
|
|
|
<p><b>{{ lib_acqs.count }}</b>{% ifequal lib_acqs.count 1 %} copy{% else %} copies{% endifequal %}</p>
|
|
|
|
</div>
|
|
|
|
{% else %}
|
2013-03-11 20:09:40 +00:00
|
|
|
<div class="unglued_white">
|
2014-02-20 21:31:13 +00:00
|
|
|
{% ifequal work.last_campaign.type 3 %}
|
2014-03-17 01:29:00 +00:00
|
|
|
<b>THANKED!</b>
|
2014-02-20 21:31:13 +00:00
|
|
|
<p><b>${{ work.last_campaign.current_total|floatformat:0|intcomma }}</b> of thanks</p>
|
2014-02-20 21:53:30 +00:00
|
|
|
<p> from <b>{{ work.last_campaign.supporters_count }}</b> ungluers</p>
|
2014-02-20 21:31:13 +00:00
|
|
|
<p> and <b>{{ work.last_campaign.anon_count }}</b> others</p>
|
|
|
|
{% else %}
|
2014-03-17 01:29:00 +00:00
|
|
|
<b>UNGLUED!</b>
|
2014-02-20 21:31:13 +00:00
|
|
|
<p><b>On:</b> {{ deadline|date:"M d, Y" }}</p>
|
|
|
|
<p><b>Raised:</b> {{ work.last_campaign.current_total|floatformat:0|intcomma }}</p>
|
|
|
|
{% endifequal %}
|
2013-10-18 16:36:55 +00:00
|
|
|
</div>
|
|
|
|
{% endif %}{% endif %}{% endif %}
|
2013-03-11 19:38:04 +00:00
|
|
|
</div>
|
2013-03-11 20:09:40 +00:00
|
|
|
<div class="add_button">
|
2014-02-11 16:37:39 +00:00
|
|
|
{% include "book_panel_addbutton.html" %}
|
2013-03-11 20:09:40 +00:00
|
|
|
</div>
|
|
|
|
<div class="white_text bottom_button" >
|
2013-10-18 16:36:55 +00:00
|
|
|
{% if purchased %}
|
|
|
|
<a href="{% url download workid %}" class="hijax"><span class="read_itbutton button_text"><span>Read it Now</span></span></a>
|
|
|
|
{% else %}{% if borrowed %}
|
|
|
|
<a href="{% url download workid %}" class="hijax"><span class="read_itbutton button_text"><span>Read it Now</span></span></a>
|
|
|
|
{% else %}{% if borrowable %}
|
|
|
|
<a href="{% url borrow workid %}?library={{library}}" class="hijax"><span class="read_itbutton button_text"><span>Borrow It</span></span></a>
|
|
|
|
{% else %}{% if first_ebook %}
|
2013-03-11 20:09:40 +00:00
|
|
|
<a href="{% url download workid %}" class="hijax"><span class="read_itbutton button_text"><span>Read it Now</span></span></a>
|
|
|
|
{% else %}
|
2013-03-20 19:24:53 +00:00
|
|
|
<a href="{% url work workid %}"><span class="read_itbutton button_text"><span>Coming Soon</span></span></a>
|
2013-10-18 16:36:55 +00:00
|
|
|
{% endif %}{% endif %}{% endif %}{% endif %}
|
2013-03-11 19:38:04 +00:00
|
|
|
</div>
|
2013-03-11 20:09:40 +00:00
|
|
|
{% else %}{% if status == 'ACTIVE' %}
|
|
|
|
<div class="greenpanel_top">
|
|
|
|
{% comment %}bibliographic data{% endcomment %}
|
|
|
|
<div class="white_text">
|
|
|
|
<p><a href="{% if workid %}{% url work workid %}{% else %}{% url googlebooks googlebooks_id %}{% endif %}">{{ title }}</a></p>
|
|
|
|
<p>{{ author }}</p>
|
|
|
|
</div>
|
|
|
|
{% comment %}link to work page{% endcomment %}
|
|
|
|
<div class="moreinfo">
|
|
|
|
<a href="{% if workid %}{% url work workid %}{% else %}{% url googlebooks googlebooks_id %}{% endif %}" target="_top">More Info</a>
|
|
|
|
</div>
|
|
|
|
|
|
|
|
<div class="unglued_white">
|
2013-10-19 20:54:09 +00:00
|
|
|
{% if in_library %}
|
|
|
|
{% if borrowable %}
|
|
|
|
<p>Available in your library now!</p>
|
2014-03-19 02:30:21 +00:00
|
|
|
{% else %}{% if lib_thanked %}
|
|
|
|
<p>Supported by your library!</p>
|
2013-10-19 20:54:09 +00:00
|
|
|
{% else %}
|
|
|
|
<p>Available in your library on<br />{{ next_acq.refreshes|date:"M j, Y" }}</p>
|
2014-03-19 02:30:21 +00:00
|
|
|
{% endif %}{% endif %}
|
2013-08-14 03:47:55 +00:00
|
|
|
{% else %}
|
2013-10-19 20:54:09 +00:00
|
|
|
{% ifequal work.last_campaign.type 1 %}
|
2014-03-17 01:29:00 +00:00
|
|
|
<b>UNGLUE IT!</b>
|
2013-10-19 20:54:09 +00:00
|
|
|
<p><b>${{ work.last_campaign.current_total|floatformat:0|intcomma }}</b> raised</p>
|
|
|
|
<p><b>${{ work.last_campaign.target|floatformat:0|intcomma }}</b> needed</p>
|
|
|
|
<p>by {{ deadline|naturalday:"M d, Y" }}</p>
|
2014-02-11 16:37:39 +00:00
|
|
|
{% else %}{% ifequal work.last_campaign.type 2 %}
|
2014-03-17 01:29:00 +00:00
|
|
|
<b>UNGLUE IT!</b>
|
2013-10-19 20:54:09 +00:00
|
|
|
<p><b>${{ work.last_campaign.left|floatformat:0|intcomma }}</b> needed</p>
|
|
|
|
<p>will unglue on </p>
|
|
|
|
<p>{{ work.last_campaign.cc_date|naturalday:"M d, Y" }}</p>
|
2014-03-03 21:51:33 +00:00
|
|
|
{% else %}{% ifequal work.last_campaign.type 3 %}
|
2014-03-17 01:29:00 +00:00
|
|
|
<b>SAY THANKS!</b>
|
2014-03-03 21:51:33 +00:00
|
|
|
<p><b>${{ work.last_campaign.current_total|floatformat:0|intcomma }}</b> of thanks</p>
|
|
|
|
<p> from <b>{{ work.last_campaign.supporters_count }}</b> ungluers</p>
|
|
|
|
<p> and <b>{{ work.last_campaign.anon_count }}</b> others</p>
|
|
|
|
{% else %}Never.{% endifequal %}{% endifequal %}{% endifequal %}
|
2013-10-19 20:54:09 +00:00
|
|
|
{% endif %}
|
2013-03-11 20:09:40 +00:00
|
|
|
</div>
|
2013-03-11 19:38:04 +00:00
|
|
|
</div>
|
2013-03-11 20:09:40 +00:00
|
|
|
{% if request.user.id in supporters %}
|
2013-03-20 19:24:53 +00:00
|
|
|
<div class="white_text bottom_button">
|
|
|
|
{% include "book_panel_addbutton.html" %}
|
|
|
|
</div>
|
2013-03-11 20:09:40 +00:00
|
|
|
{% else %}
|
2013-03-20 19:24:53 +00:00
|
|
|
<div class="add_button">
|
|
|
|
{% include "book_panel_addbutton.html" %}
|
|
|
|
</div>
|
|
|
|
<div class="white_text bottom_button" >
|
2013-08-14 03:47:55 +00:00
|
|
|
{% ifequal work.last_campaign.type 1 %}
|
2013-10-18 16:36:55 +00:00
|
|
|
<a href="{% url pledge work_id=workid %}"><span class="read_itbutton pledge button_text"><span>Pledge</span></span></a>
|
2014-02-11 16:37:39 +00:00
|
|
|
{% else %}{% ifequal work.last_campaign.type 2 %}
|
2013-10-19 20:54:09 +00:00
|
|
|
{% if in_library %}
|
2013-10-20 18:18:17 +00:00
|
|
|
<a href="{% url purchase work_id=workid %}"><span class="read_itbutton pledge button_text"><span>Reserve It</span></span></a>
|
2013-10-19 20:54:09 +00:00
|
|
|
{% else %}
|
2014-06-17 18:39:16 +00:00
|
|
|
<a href="{% url purchase work_id=workid %}" title="${{ work.last_campaign.individual_offer.price|floatformat:2 }}"><span class="read_itbutton pledge button_text"><span>Purchase</span></span></a>
|
2013-10-19 20:54:09 +00:00
|
|
|
{% endif %}
|
2014-02-11 16:37:39 +00:00
|
|
|
{% else %}{% ifequal work.last_campaign.type 3 %}
|
|
|
|
<a href="{% url thank workid %}" class="hijax"><span class="read_itbutton button_text"><span>Read it Now</span></span></a>
|
|
|
|
{% endifequal %}{% endifequal %}{% endifequal %}
|
2013-03-20 19:24:53 +00:00
|
|
|
</div>
|
|
|
|
{% endif %}
|
2013-03-11 19:38:04 +00:00
|
|
|
|
|
|
|
{% else %}
|
2013-03-11 20:09:40 +00:00
|
|
|
<div class="greenpanel_top">
|
|
|
|
{% comment %}bibliographic data{% endcomment %}
|
|
|
|
<div class="white_text">
|
|
|
|
<p><a href="{% if workid %}{% url work workid %}{% else %}{% url googlebooks googlebooks_id %}{% endif %}">{{ title }}</a></p>
|
|
|
|
<p>{{ author }}</p>
|
|
|
|
</div>
|
|
|
|
{% comment %}link to work page{% endcomment %}
|
|
|
|
<div class="moreinfo">
|
|
|
|
<a href="{% if workid %}{% url work workid %}{% else %}{% url googlebooks googlebooks_id %}{% endif %}" target="_top">More Info</a>
|
|
|
|
</div>
|
|
|
|
<div class="unglued_white">
|
|
|
|
{% if status == 'INITIALIZED' %}
|
|
|
|
<p>Campaign coming soon!</p>
|
|
|
|
{% else %}{% if status == 'SUSPENDED' %}
|
|
|
|
<p>This campaign has been suspended.</p><br /><p>See the <a href="{{faqurl}}">FAQ</a> for details.</p>
|
|
|
|
{% else %}{% if status == 'WITHDRAWN' %}
|
|
|
|
<p>This campaign has been withdrawn.</p><br /><p>See the <a href="{{faqurl}}">FAQ</a> for details.</p>
|
|
|
|
{% else %}{% if status == 'UNSUCCESSFUL' %}
|
|
|
|
<p>{{ deadline }}</p>
|
|
|
|
<p>Watch for a new campaign.</p>
|
|
|
|
{% endif %}{% endif %}{% endif %}{% endif %}
|
2014-02-11 16:37:39 +00:00
|
|
|
{% include "book_panel_addbutton.html" %}
|
|
|
|
</div>
|
2013-03-11 20:09:40 +00:00
|
|
|
</div>
|
|
|
|
<div class="white_text bottom_button">
|
2014-02-11 16:37:39 +00:00
|
|
|
{% include "num_wishes.html" %}
|
2013-03-11 20:09:40 +00:00
|
|
|
</div>
|
|
|
|
{% endif %}{% endif %}
|
2013-03-11 19:38:04 +00:00
|
|
|
{% else %}
|
|
|
|
<div class="greenpanel_top">
|
|
|
|
{% comment %}bibliographic data{% endcomment %}
|
|
|
|
<div class="white_text">
|
|
|
|
<p><a href="{% if workid %}{% url work workid %}{% else %}{% url googlebooks googlebooks_id %}{% endif %}">{{ title }}</a></p>
|
|
|
|
<p>{{ author }}</p>
|
|
|
|
</div>
|
|
|
|
{% comment %}link to work page{% endcomment %}
|
|
|
|
<div class="moreinfo">
|
|
|
|
<a href="{% if workid %}{% url work workid %}{% else %}{% url googlebooks googlebooks_id %}{% endif %}" target="_top">More Info</a>
|
|
|
|
</div>
|
|
|
|
<div class="unglued_white">
|
|
|
|
{% if first_ebook %}
|
|
|
|
<b>AVAILABLE!</b>
|
|
|
|
{% else %}
|
2014-02-11 16:37:39 +00:00
|
|
|
<p>No campaign yet.</p><br /><p>But if lots of ungluers fave this book, maybe there will be!</p>
|
2013-03-11 19:38:04 +00:00
|
|
|
{% endif %}
|
2014-04-10 19:52:25 +00:00
|
|
|
<div class="add_button">
|
2014-02-11 16:37:39 +00:00
|
|
|
{% include "book_panel_addbutton.html" %}
|
2014-04-10 19:52:25 +00:00
|
|
|
</div>
|
2013-03-11 19:38:04 +00:00
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
<div class="white_text bottom_button">
|
|
|
|
{% if first_ebook %}
|
2013-03-20 19:24:53 +00:00
|
|
|
<a href="{% url download workid %}" class="hijax"><span class="read_itbutton button_text"><span>Read it Now</span></span></a>
|
2013-03-11 19:38:04 +00:00
|
|
|
{% else %}
|
2014-02-11 16:37:39 +00:00
|
|
|
{% include "num_wishes.html" %}
|
2013-03-11 19:38:04 +00:00
|
|
|
{% endif %}
|
|
|
|
</div>
|
|
|
|
|
2013-03-11 20:09:40 +00:00
|
|
|
{% endif %}
|
2013-03-11 19:38:04 +00:00
|
|
|
|
|
|
|
|
2012-05-31 17:29:41 +00:00
|
|
|
</div>
|
2011-12-01 02:05:19 +00:00
|
|
|
</div>
|
|
|
|
<div class="listview panelfront side1 book-thumb">
|
2012-05-31 17:25:19 +00:00
|
|
|
<a href="{% if workid %}{% url work workid %}{% 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">
|
2012-05-31 17:33:16 +00:00
|
|
|
<a href="{% if workid %}{% url work workid %}{% else %}{% url googlebooks googlebooks_id %}{% endif %}">{{ title }}</a>
|
2011-11-22 01:21:06 +00:00
|
|
|
</div>
|
2014-01-18 02:37:19 +00:00
|
|
|
<div class="listview author">{{ author }}</div>
|
2011-11-22 01:21:06 +00:00
|
|
|
</div>
|
2012-05-31 17:25:19 +00:00
|
|
|
|
|
|
|
{% comment %}same logic as above{% endcomment %}
|
2014-12-11 04:27:49 +00:00
|
|
|
{% if setkw %}
|
|
|
|
{% if setkw in work.subjects.all %}
|
|
|
|
<div class="listview panelfront side1 remove-wishlist">
|
|
|
|
<span class="kw_id" id="l{{ workid }}" data-kw="{{setkw}}">Unset <i>{{setkw}}</i></span>
|
|
|
|
</div>
|
|
|
|
{% else %}
|
|
|
|
<div class="listview panelfront side1 add-wishlist">
|
|
|
|
<span class="kw_id" id="l{{ workid }}" data-kw="{{setkw}}">Set <i>{{setkw}}</i></span>
|
|
|
|
</div>
|
|
|
|
{% endif %}
|
|
|
|
{% else %}{% if show_pledge %}
|
2013-10-18 16:36:55 +00:00
|
|
|
<div class="listview panelfront side1 add-wishlist">
|
|
|
|
<span class="booklist_pledge"><a href="{% url pledge work_id=workid %}" class="fakeinput">Pledge</a></span>
|
|
|
|
</div>
|
|
|
|
{% else %}{% if show_purchase %}
|
|
|
|
<div class="listview panelfront side1 add-wishlist">
|
2014-06-17 18:39:16 +00:00
|
|
|
<span class="booklist_pledge"><a href="{% url purchase work_id=workid %}" class="fakeinput" title="${{ work.last_campaign.individual_offer.price|floatformat:2 }}">Purchase</a></span>
|
2013-10-18 16:36:55 +00:00
|
|
|
</div>
|
|
|
|
{% else %}{% if request.user.is_anonymous %}
|
2013-01-05 00:21:34 +00:00
|
|
|
<div class="listview panelfront side1 create-account">
|
2014-02-11 16:37:39 +00:00
|
|
|
<span title="{% if workid %}{% url work workid %}{% else %}{% url googlebooks googlebooks_id %}{% endif %}">Login to Fave</span>
|
2013-01-05 00:21:34 +00:00
|
|
|
</div>
|
2013-10-18 16:36:55 +00:00
|
|
|
{% else %}{% if work in wishlist %}
|
|
|
|
{% ifequal supporter request.user %}
|
|
|
|
{% comment %} used only on your own supporter page. {% endcomment %}
|
2013-01-03 21:33:07 +00:00
|
|
|
<div class="listview panelfront side1 remove-wishlist">
|
2014-02-11 16:37:39 +00:00
|
|
|
<span id="l{{ workid }}">Un-Fave</span>
|
2013-01-03 21:33:07 +00:00
|
|
|
</div>
|
2013-10-18 16:36:55 +00:00
|
|
|
{% else %}
|
|
|
|
<div class="listview panelfront side1 on-wishlist">
|
|
|
|
{% if purchased %}
|
2014-12-20 18:03:20 +00:00
|
|
|
<span>{% if purchased.gifts.all.count %}A gift to you!{% else %}Purchased!{% endif %}</span>
|
2013-10-18 16:36:55 +00:00
|
|
|
{% else %}{% if borrowed %}
|
2013-10-19 20:54:09 +00:00
|
|
|
<span>Borrowed! ...until</span>
|
2013-10-18 16:36:55 +00:00
|
|
|
{% else %}{% if request.user.id in supporters %}
|
|
|
|
<span>Pledged!</span>
|
|
|
|
{% else %}
|
2014-02-11 16:37:39 +00:00
|
|
|
<span>Faved!</span>
|
2013-10-18 16:36:55 +00:00
|
|
|
{% endif %}{% endif %}{% endif %}
|
|
|
|
</div>
|
2013-01-03 21:33:07 +00:00
|
|
|
{% endifequal %}
|
2011-11-22 01:21:06 +00:00
|
|
|
{% else %}
|
2013-01-05 00:21:34 +00:00
|
|
|
<div class="listview panelfront side1 add-wishlist">
|
2012-11-20 14:56:04 +00:00
|
|
|
{% if on_search_page %}
|
2014-02-11 16:37:39 +00:00
|
|
|
<span class="gb_id" id="l{{ googlebooks_id }}">Fave</span>
|
2012-11-20 14:56:04 +00:00
|
|
|
{% else %}
|
2014-02-11 16:37:39 +00:00
|
|
|
<span class="work_id" id="l{{ workid }}">Fave</span>
|
2012-11-20 14:56:04 +00:00
|
|
|
{% endif %}
|
2013-01-05 00:21:34 +00:00
|
|
|
</div>
|
2014-12-11 04:27:49 +00:00
|
|
|
{% endif %}{% endif %}{% endif %}{% endif %}{% endif %}
|
2012-05-31 17:25:19 +00:00
|
|
|
|
2011-12-01 02:05:19 +00:00
|
|
|
<div class="listview panelfront side1 booklist-status">
|
2012-05-31 17:25:19 +00:00
|
|
|
{% ifequal status "ACTIVE" %}
|
2014-02-11 16:37:39 +00:00
|
|
|
{% ifequal work.last_campaign.type 1 %}
|
|
|
|
<div class="booklist-status-label">{{ work.percent_of_goal }}%</div>
|
|
|
|
{% endifequal %}
|
|
|
|
{% ifequal work.last_campaign.type 2 %}
|
|
|
|
{% if in_library %}
|
|
|
|
{% if borrowed %}
|
|
|
|
<span class="booklist-status-text">{{ borrowed.expires|date:"M j, Y" }}</span>
|
|
|
|
{% else %}
|
|
|
|
<span class="booklist-status-text" style="line-height:19px">available<br />
|
|
|
|
{% if next_acq.refreshes %}
|
|
|
|
{{ next_acq.refreshes|date:"M j, Y" }}
|
|
|
|
{% else %}
|
|
|
|
now
|
|
|
|
{% endif %}
|
|
|
|
</span>
|
|
|
|
{% endif %}
|
|
|
|
{% else %}
|
2014-06-17 18:39:16 +00:00
|
|
|
<div class="booklist-status-label"><span class="buyit">${{ work.last_campaign.individual_offer.price|floatformat:2|intcomma }}</span> </div>
|
2014-02-11 16:37:39 +00:00
|
|
|
{% endif %}
|
|
|
|
{% endifequal %}
|
|
|
|
{% ifequal work.last_campaign.type 3 %}
|
|
|
|
{% include 'num_wishes.html' %}
|
|
|
|
{% endifequal %}
|
2012-05-31 17:25:19 +00:00
|
|
|
{% else %}{% ifequal status "INITIALIZED" %}
|
2013-10-19 20:54:09 +00:00
|
|
|
<span class="booklist-status-label">Status: </span><span class="booklist-status-text">Coming soon!</span>
|
2012-12-31 19:57:01 +00:00
|
|
|
{% else %}{% ifequal status "SUCCESSFUL" %}
|
|
|
|
{% if not first_ebook %}
|
2013-01-02 21:10:32 +00:00
|
|
|
<span class="booklist-status-text">Ebook coming soon</span>
|
2012-12-31 19:57:01 +00:00
|
|
|
{% else %}
|
2014-02-11 16:37:39 +00:00
|
|
|
{% include 'num_wishes.html' %}
|
|
|
|
{% endif %}
|
|
|
|
{% else %}
|
|
|
|
{% if first_ebook %}
|
|
|
|
{% include 'num_wishes.html' %}
|
2012-12-31 19:57:01 +00:00
|
|
|
{% endif %}
|
|
|
|
{% endifequal %}{% 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">
|
2012-05-31 17:25:19 +00:00
|
|
|
|
|
|
|
{% comment %}
|
|
|
|
For status icons, we should display...
|
|
|
|
If there is an ebook: options to get it
|
|
|
|
If no ebook but there is an active or successful campaign: progress toward goal
|
2013-10-19 20:54:09 +00:00
|
|
|
If B2U, read, borrow, reserve, purchase
|
2012-05-31 17:25:19 +00:00
|
|
|
Otherwise: number of wishes
|
|
|
|
{% endcomment %}
|
2013-10-19 20:54:09 +00:00
|
|
|
{% if purchased or borrowed or first_ebook %}
|
|
|
|
<a href="{% url download workid %}" class="hijax" title="Download this work"><div class="read_itbutton"><span>Read it Now</span></div></a>
|
2013-10-18 16:36:55 +00:00
|
|
|
{% else %}{% if borrowable %}
|
2013-10-19 20:54:09 +00:00
|
|
|
<a href="{% url borrow workid %}?library={{library}}" class="hijax" title="Borrow this work"><div class="read_itbutton"><span>Borrow It</span></div></a>
|
|
|
|
{% else %}{% if in_library %}
|
2013-10-20 18:18:17 +00:00
|
|
|
<a href="{% url purchase work_id=workid %}" title="Reserve or buy this work"><div class="read_itbutton"><span>Reserve It</span></div></a>
|
2012-05-31 17:25:19 +00:00
|
|
|
{% else %}{% if status == 'ACTIVE' or status == 'SUCCESSFUL' %}
|
2013-10-19 20:54:09 +00:00
|
|
|
{% if not library or not in_library %}
|
2012-05-31 17:25:19 +00:00
|
|
|
<div class="booklist-status-img">
|
2014-06-17 18:39:16 +00:00
|
|
|
<img src="/static/images/images/icon-book-37by25-{{ work.percent_unglued }}.png" title="{{ work.percent_of_goal }}% of goal" alt="book list status" />
|
2012-05-31 17:25:19 +00:00
|
|
|
</div>
|
|
|
|
<div class="booklist-status-label panel">{{ work.percent_of_goal }}%</div>
|
2013-10-19 20:54:09 +00:00
|
|
|
{% endif %}
|
2012-01-16 17:10:38 +00:00
|
|
|
{% else %}
|
2014-02-11 16:37:39 +00:00
|
|
|
{% include "num_wishes.html" %}
|
2013-10-19 20:54:09 +00:00
|
|
|
{% endif %}{% endif %}{% endif %}{% endif %}
|
2012-01-16 17:10:38 +00:00
|
|
|
|
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-09-12 03:44:21 +00:00
|
|
|
</div>
|
2012-03-09 13:56:59 +00:00
|
|
|
</div>
|
|
|
|
{% endwith %}
|
|
|
|
{% endwith %}
|
|
|
|
{% endwith %}
|
|
|
|
{% endwith %}
|
2012-05-17 16:06:29 +00:00
|
|
|
{% endwith %}
|
2012-05-24 16:35:58 +00:00
|
|
|
{% endwith %}
|
2012-05-29 23:57:38 +00:00
|
|
|
{% endwith %}
|
2012-05-31 17:33:16 +00:00
|
|
|
{% endwith %}
|
2013-01-03 01:26:20 +00:00
|
|
|
{% endwith %}
|
2012-05-31 17:25:19 +00:00
|
|
|
{% endwith %}
|