2011-11-15 16:32:30 +00:00
{% extends "base.html" %}
{% block title %}
— {{ title }}
{% endblock %}
{% block extra_head %}
< link type = "text/css" rel = "stylesheet" href = "/static/css/campaign.css" / >
< script type = "text/javascript" src = "/static/js/wishlist.js" > < / script >
{% endblock %}
{% block content %}
< div id = "main-container" >
< div class = "js-main" >
< div id = "js-leftcol" >
< div class = "jsmodule rounded" >
< div class = "jsmod-content" >
0 Ungluers are WISHING< br / >
< / div >
< / div >
{% include "explore.html" %}
< / div >
< div id = "js-maincol" >
< div class = "js-maincol-inner" >
2012-02-06 18:53:25 +00:00
< div id = "content-block" >
2011-11-15 16:32:30 +00:00
< div class = "book-detail" >
< div class = "book-detail-img" >
< a href = "#" > < img src = "http://{{ imagebase }}/{{ image }}" alt = "{{ title }}" title = "{{ title }}" width = "131" height = "192" / > < / a >
< / div >
< div class = "book-detail-info" >
< h2 class = "book-name" > {{ title }}< / h2 >
< h3 class = "book-author" > {{ author }}< / h3 >
< div class = "find-book" >
< label > Find it here< / label >
<!-- todo: these should be a real thing -->
< div class = "find-link" >
2012-03-10 03:16:07 +00:00
< a class = "find-google" href = "#" > < img src = "/static/images/icons/google.png" title = "" alt = "link to google" / > < / a >
< a class = "find-group" href = "#" > < img src = "/static/images/icons/group.png" title = "" alt = "link to group" / > < / a >
2011-11-15 16:32:30 +00:00
< / div >
< / div >
2012-03-09 18:00:00 +00:00
< div class = "pledged-info" > < div class = "pledged-group" > 0 Ungluers have pledged $0< / div > < div class = "status" > < img src = "/static/images/images/icon-book-37by25-0.png" title = "book list status" alt = "book list status" / > < / div > < / div >
2011-11-15 16:32:30 +00:00
< / div >
< / div >
< div id = "tabs" class = "content-block-heading" >
< / div >
2012-02-06 18:53:25 +00:00
< div id = "content-block-content" >
2011-11-15 16:32:30 +00:00
< div id = "tabs-1" class = "tabs" >
< div class = "tabs-content" >
{% if request.user.is_anonymous %}
< div class = "create-account" > < p > No one has wishlisted this yet. < b > < span > Be the first.< / span > < / b > < / p >
< / div >
{% else %}
< div class = "add-wishlist" > < p > No one has wishlisted this yet. < b > < span id = "{{ googlebooks_id }}" > Be the first.< / span > < / b > < / p >
< / div >
{% endif %}
< / div >
< / div >
< / div >
< / div >
< / div >
< / div >
< div id = "js-rightcol" >
< div class = "js-rightcol-pad rounded" >
< div class = "jsmodule" >
< h3 class = "jsmod-title" > < span > Share< / span > < / h3 >
< div class = "jsmod-content" >
< ul class = "social menu" >
< li class = "facebook first" > < a href = "#" > < span > Facebook< / span > < / a > < / li >
< li class = "twitter" > < a href = "#" > < span > Twitter< / span > < / a > < / li >
< li class = "lasts email" > < a href = "#" > < span > Email< / span > < / a > < / li >
< / ul >
< / div >
< / div >
{% if work.last_campaign %}
< div class = "jsmodule" >
< h3 class = "jsmod-title" > < span > Support< / span > < / h3 >
< div class = "jsmod-content" >
< ul class = "support menu" >
{% for premium in premiums %}
< li class = "{% if forloop.first %}first{% else %}{% if forloop.last %}last{% endif %}{% endif %}" >
< a href = "{% url pledge work_id=work.id %}?premium_id={{premium.id}}" >
< span class = "menu-item-price" > ${{ premium.amount }}< / span >
< span class = "menu-item-desc" > {{ premium.description }}< / span >
{% ifequal premium.type 'CU' %}< span class = "custom-premium" > exclusive!< / span > {% endifequal %}
< / a > < / li >
{% endfor %}
< / ul >
< / div >
< / div >
{% endif %}
< / div >
< / div >
< / div >
< / div >
{% endblock %}