104 lines
4.6 KiB
HTML
104 lines
4.6 KiB
HTML
{% extends "basedocumentation.html" %}
|
|
|
|
{% block title %}Campaign Management{% endblock %}
|
|
|
|
{% block doccontent %}
|
|
{% if campaign.not_manager %}
|
|
<h2>You're not a manager for campaign: {{ campaign.name }}</h2>
|
|
{% else %}
|
|
{% for alert in alerts %}
|
|
<h1 class="alert">{{ alert }}</h1>
|
|
{% empty %}
|
|
<h1>Manage the campaign</h1>
|
|
{% endfor %}
|
|
{% for problem in problems %}
|
|
Please fix the following before launching your campaign:
|
|
<br /><br />
|
|
<ul class="errorlist">
|
|
<li>{{ problem }}</li>
|
|
</ul>
|
|
{% empty %}
|
|
{% endfor %}
|
|
<h2>The work</h2>
|
|
<div class="book-detail-info">
|
|
<h2 class="book-name">Title: <a href="{% url work campaign.work.id %}">{{ campaign.work.title }}</a></h2>
|
|
<h3 class="book-author">Authors: {{ campaign.work.author }}</h3>
|
|
<h3 class="book-year">Published: {{ campaign.work.publication_date }}</h3>
|
|
<h3 class="book-author">Language: {{ campaign.work.editions.all.0.language }}</h3>
|
|
<p>Target Price: {{ campaign.pretarget }}</p>
|
|
<p>End Date: {{ campaign.predeadline }}</p>
|
|
<p>Campaign status: {{ campaign.status }}</p>
|
|
</div>
|
|
|
|
<h3>Description of the offering</h2>
|
|
<form action="#" method="POST">
|
|
{% csrf_token %}
|
|
<p>This will be displayed in the Campaign tab for your work. It's your main pitch to supporters. It should include:</p>
|
|
<ul class="terms">
|
|
<li>A synopsis of the work.</li>
|
|
<li>Hyperlinks for the author(s), publisher making the offer, or for the work itself.</li>
|
|
<li>Anything especially appealing about the work or author: awards, embedded video (460px max), etc.</li>
|
|
</ul>
|
|
{{ form.description }}{{ form.description.errors }}
|
|
<h3>Offer details</h2>
|
|
<p>This will be displayed on the Details tab for your work. It gives additional information for the highly curious. It should include:</p>
|
|
<ul class="terms">
|
|
<li>Details about the edition being offered.</li>
|
|
<li>Hyperlinks for the author(s), publisher making the offer, or for the work itself.</li>
|
|
</uL>
|
|
{{ form.details }}{{ form.details.errors }}
|
|
<h3>Target Price</h2>
|
|
<p> This is the target price for your campaign. Once you launch the campaign, you won't be able to increase it.</p>
|
|
{{ form.target }}{{ form.target.errors }}
|
|
<h3>License being offered</h2>
|
|
<p> This is the license you are offering to use once the campaign succeeds. For more info on the licenses you can use, see <a href="http://creativecommons.org/">Creative Commons</a></p>
|
|
{{ form.license }}{{ form.license.errors }}
|
|
<h3>Ending date</h2>
|
|
<p> This is the ending date of your campaign. Once you launch the campaign, you won't be able to change it.
|
|
The ending date can't be more than six months away- that's a practical limit for credit card authorizations.</p>
|
|
|
|
{{ form.deadline }}{{ form.deadline.errors }}
|
|
|
|
<h3>Paypal collection address</h2>
|
|
<p> If your campaign succeeds, the funds raised (less commission and fees) will be deposited in a paypal account bearing this email address.</p>
|
|
{{ form.paypal_receiver }}{{ form.paypal_receiver.errors }}
|
|
<p> To save your work, or to launch the campaign, click a button below.</p>
|
|
|
|
<input type="submit" name="save" value="Save Campaign" />
|
|
<input type="submit" name="launch" value="Launch Campaign" />
|
|
</form>
|
|
|
|
<h3>Premiums</h3>
|
|
<div class="jsmod-content">
|
|
<form action="#" method="POST">
|
|
{% csrf_token %}
|
|
<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=campaign.work.id %}?premium_id={{premium.id}}">
|
|
<span class="menu-item-price">${{ premium.amount }}</span>
|
|
<span class="menu-item-desc">{{ premium.description }}</span>
|
|
</a>
|
|
{% if premium.type %}<span class="custom-premium"> <br />Type: {{ premium.get_type_display }}</span>{% endif %}
|
|
{% ifnotequal premium.limit 0 %}<br />Limit: {{ premium.limit }}{% endifnotequal %}
|
|
{% ifequal premium.type 'CU' %}<br />Deactivate? <input type="checkbox" name="premium_id" value="{{ premium.id }}" />{% endifequal %}
|
|
</li>
|
|
{% endfor %}
|
|
</ul>
|
|
<input type="submit" name="inactivate" value="Inactivate Checked Premiums" />
|
|
</form>
|
|
</div>
|
|
<h4>Add a custom premium for this campaign</h4>
|
|
<form action="#" method="POST">
|
|
{% csrf_token %}
|
|
Pledge Amount: {{ premium_form.amount }}{{ premium_form.amount.errors }}<br />
|
|
Premium Description: {{ premium_form.description }}{{ premium_form.description.errors }}<br />
|
|
Number Available (0 if no limit): {{ premium_form.limit }}{{ premium_form.limit.errors }}<br />
|
|
{{ premium_form.campaign }}
|
|
{{ premium_form.type }}{{ premium_form.type.errors }}
|
|
<br />
|
|
<input type="submit" name="add_premium" value="Add Premium" />
|
|
</form>
|
|
|
|
{% endif %}
|
|
{% endblock %} |