83 lines
3.1 KiB
HTML
83 lines
3.1 KiB
HTML
{% extends "basepledge.html" %}
|
|
|
|
{% block title %}Pledge{% endblock %}
|
|
|
|
{% block extra_extra_head %}
|
|
<link type="text/css" rel="stylesheet" href="/static/css/campaign.css" />
|
|
<link type="text/css" rel="stylesheet" href="/static/css/pledge.css" />
|
|
{% endblock %}
|
|
|
|
{% block doccontent %}
|
|
<div style="height:10px";></div>
|
|
<div class="book-detail">
|
|
<div class="book-detail-img">
|
|
<a href="#"><img src="{{ work.cover_image_thumbnail }}" alt="{{ work.title }}" title="{{ work.title }}" width="131" height="192" /></a>
|
|
</div>
|
|
|
|
<div class="book-detail-info">
|
|
<h2 class="book-name">{{ work.title }}</h2>
|
|
<h3 class="book-author">{{ work.author }}</h3>
|
|
<h3 class="book-year">{{ work.publication_date }}</h3>
|
|
|
|
<div class="pledged-info">
|
|
<div class="pledged-group">
|
|
{{ work.last_campaign.supporters.count }} Ungluers have pledged ${{ work.last_campaign.current_total }}
|
|
</div>
|
|
<div class="status">
|
|
<img src="/static/images/images/icon-book-37by25-{{ work.percent_unglued }}.png" title="book list status" alt="book list status" />
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
|
|
<div class="jsmodule rounded pledge">
|
|
<div class="jsmod-content">
|
|
${{ work.last_campaign.target }} needed by<br />
|
|
{{ work.last_campaign.deadline }}
|
|
</div>
|
|
</div>
|
|
|
|
<div class="jsmodule rounded">
|
|
<div class="jsmod-content">
|
|
|
|
{% comment %}
|
|
Even there is a CampaignPledgeForm in frontend/forms.py , the "widget" for premium_id is implemented in HTML here for now.
|
|
{% endcomment %}
|
|
|
|
<form class="pledgeform" method="POST" action="{% url pledge work_id=work.id %}">
|
|
{% csrf_token %}
|
|
{{ form.non_field_errors }}
|
|
{{ form.preapproval_amount.errors }}
|
|
<div class="pledge_amount">{{ form.preapproval_amount.label_tag }}: ${{ form.preapproval_amount }}</div>
|
|
{{ form.anonymous.errors }}
|
|
|
|
{% comment %}
|
|
not supported yet; don't display
|
|
{{ form.anonymous.label_tag }}: {{ form.anonymous }}
|
|
{% endcomment %}
|
|
|
|
<ul class="support menu">
|
|
{% for premium in premiums %}
|
|
{% if premium.limit == 0 or premium.limit > premium.premium_count %}
|
|
<label for="{{premium.id}}">
|
|
<li class="{% if forloop.first %}first{% else %}{% if forloop.last %}last{% endif %}{% endif %}">
|
|
<input type="radio" name="premium_id" value="{{premium.id}}" {% ifequal request.REQUEST.premium_id premium.id|stringformat:"s" %}checked="checked"{% endifequal %} />
|
|
<span class="menu-item-price">
|
|
${{ premium.amount }}
|
|
</span>
|
|
<span class="menu-item-desc">
|
|
{{ premium.description }} {% ifnotequal premium.limit 0 %}<br /> Only {{ premium.premium_remaining }} remaining! {% endifnotequal %}
|
|
</span>
|
|
</a></li></label>
|
|
{% endif %}
|
|
{% endfor %}
|
|
</ul>
|
|
|
|
<input type="submit" value="Pledge" id="pledgesubmit" />
|
|
</form>
|
|
</div>
|
|
|
|
{% endblock %}
|
|
|
|
|