2011-12-28 00:17:44 +00:00
|
|
|
<div class="thewholebook listview tabs {% if status == 'SUCCESSFUL' %}tabs-1{% else %}{% if 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
|
|
|
|
|
|
|
<!-- top section: campaign info + optional action button. Varies by campaign status. -->
|
2011-12-01 02:05:19 +00:00
|
|
|
{% if work.first_pdf_url or work.first_epub_url %}
|
2011-12-28 00:17:44 +00:00
|
|
|
<b>AVAILABLE!</b>
|
|
|
|
</div>
|
|
|
|
<div class="read_itbutton">{% if work.first_epub_url %}<a href="{{ work.first_epub_url }}">{% else %}<a href="{{ work.first_pdf_url }}">{% endif %}Read it Now</a></div>
|
|
|
|
|
|
|
|
{% 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>
|
|
|
|
<div class="read_itbutton">{% if work.first_epub_url %}<a href="{{ work.first_epub_url }}">{% else %}<a href="{{ work.first_pdf_url }}">{% endif %}Read it Now</a></div>
|
|
|
|
|
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
|
|
|
|
|
|
|
<!-- status of book vis-a-vis user's wishlist -->
|
2012-01-02 16:09:48 +00:00
|
|
|
{% if request.user.id in work.last_campaign.supporters %}
|
|
|
|
<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">
|
2011-12-28 00:17:44 +00:00
|
|
|
<span id="{{ 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">
|
2011-12-27 02:10:32 +00:00
|
|
|
<span id="{{ googlebooks_id }}">Add to Wishlist</span>
|
2011-12-01 02:05:19 +00:00
|
|
|
</div>
|
2012-01-02 16:09:48 +00:00
|
|
|
{% endif %}{% endif %}{% endifequal %}{% endif %}
|
2011-12-28 00:17:44 +00:00
|
|
|
|
|
|
|
<!-- bibliographic data -->
|
2011-12-01 02:05:19 +00:00
|
|
|
<div class="white_text">
|
|
|
|
<p><a href="{% if work.id %}{% url work work.id %}{% else %}{% url googlebooks work.googlebooks_id %}{% endif %}">{{ work.title }}</a></p>
|
|
|
|
<p>{{ work.author }}</p>
|
|
|
|
</div>
|
2011-12-28 00:17:44 +00:00
|
|
|
|
|
|
|
<!-- link to work page -->
|
2011-12-01 02:05:19 +00:00
|
|
|
<div class="moreinfo">
|
2011-12-28 00:17:44 +00:00
|
|
|
<a href="{% if work.id %}{% url work work.id %}{% else %}{% url googlebooks work.googlebooks_id %}{% endif %}" target="_top">More Info</a>
|
2011-12-01 02:05:19 +00:00
|
|
|
</div>
|
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">
|
2011-12-28 12:27:56 +00:00
|
|
|
<a href="{% if work.id %}{% url work work.id %}{% else %}{% url googlebooks work.googlebooks_id %}{% endif %}" target="_top"><img src="{% if work.cover_image_thumbnail %}{{ work.cover_image_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>
|
|
|
|
<div class="listview author {{ work.author }}">{{ work.author }}</div>
|
|
|
|
</div>
|
2012-01-02 15:59:00 +00:00
|
|
|
{% if request.user.id in work.last_campaign.supporters %}
|
|
|
|
<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">
|
2011-12-03 20:20:28 +00:00
|
|
|
<span id="{{ 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">
|
|
|
|
<span>On Your Wishlist!</span>
|
|
|
|
</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">
|
2011-12-03 00:26:41 +00:00
|
|
|
<span id="{{ 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">
|
2011-11-22 01:21:06 +00:00
|
|
|
<span class="booklist-status-label">Status: </span><span class="booklist-status-text">{{ status }}</span>
|
|
|
|
</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' %}
|
2011-12-27 02:10:32 +00:00
|
|
|
<span class="rounded"><span class="grey"><span class="panelnope">Wished by </span>{{ work.wished_by.count }}</span></span>
|
2011-12-26 17:53:28 +00:00
|
|
|
{% else %}
|
|
|
|
<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>
|
2011-12-26 17:53:28 +00:00
|
|
|
{% 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-23 17:28:59 +00:00
|
|
|
{% if work.first_epub_url %}
|
2011-11-22 01:21:06 +00:00
|
|
|
<span class="listview boolist-ebook">
|
2011-11-23 17:28:59 +00:00
|
|
|
<a href="{{ work.first_epub_url }}">epub</a>
|
2011-11-22 01:21:06 +00:00
|
|
|
</span>
|
|
|
|
{% endif %}
|
2011-11-23 17:28:59 +00:00
|
|
|
{% if work.first_pdf_url %}
|
2011-11-22 01:21:06 +00:00
|
|
|
<span class="listview boolist-ebook">
|
2011-11-23 17:28:59 +00:00
|
|
|
<a href="{{ work.first_pdf_url }}">pdf</a>
|
2011-11-22 01:21:06 +00:00
|
|
|
</span>
|
|
|
|
{% endif %}
|
|
|
|
</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>
|
2011-11-23 17:28:59 +00:00
|
|
|
</div>
|