{% extends "basedocumentation.html" %} {% block title %}Campaign Management{% endblock %} {% block extra_extra_head %} {% endblock %} {% block doccontent %} {% if campaign.not_manager %}

You're not a manager for campaign: {{ campaign.name }}

{% else %} {% for alert in alerts %}

{{ alert }}

{% empty %}

Manage the campaign

{% endfor %} {% for problem in problems %} Please fix the following before launching your campaign:

{% empty %} {% endfor %} Or, go back to rights holder tools page.

The work

Title: {{ campaign.work.title }}

Authors: {{ campaign.work.author }}

Published: {{ campaign.work.publication_date }}

Language: {{ campaign.work.editions.all.0.language }}

Target Price: ${{ campaign.target }}

End Date: {{ campaign.deadline|date:"M d, Y" }}

Campaign status: {{ campaign.status }}

{% ifequal campaign.status 'INITIALIZED' %}
Preview This Campaign
{% endifequal %}

Description of the work offered for ungluing

{% csrf_token %}

This will be displayed in the Campaign tab for your work. It's your main pitch to supporters. It should include:

Make it concise and emotionally appealing. The point here is not to tell ungluers everything about your book; it's to remind them why they love it.

{{ form.description.errors }}{{ form.description }}

Offer details

This will be displayed on the Details tab for your work. It gives additional information for the highly curious. It should include:

{{ form.details.errors }}{{ form.details }}

Target Price

This is the target price for your campaign. Once you launch the campaign, you won't be able to increase it.

{{ form.target.errors }}{{ form.target }}

License being offered

This is the license you are offering to use once the campaign succeeds. For more info on the licenses you can use, see Creative Commons

{{ form.license.errors }}{{ form.license }}

Ending date

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.

{{ form.deadline.errors }}{{ form.deadline }}

Paypal collection address

If your campaign succeeds, the funds raised (less commission and fees) will be deposited in a paypal account bearing this email address.

{{ form.paypal_receiver.errors }}{{ form.paypal_receiver }}

{% ifequal campaign.status 'ACTIVE' %} {% else %} {% endifequal %} {% ifequal campaign.status 'INITIALIZED' %} {% endifequal %}

Premiums

{% csrf_token %} {% if campaign.custom_premiums.count %} {% endif %}

Add a custom premium for this campaign

{% csrf_token %} Pledge Amount: {{ premium_form.amount.errors }}{{ premium_form.amount }}
Premium Description: {{ premium_form.description.errors }}{{ premium_form.description }}
Number Available (0 if no limit): {{ premium_form.limit.errors }}{{ premium_form.limit }}
{{ premium_form.campaign }} {{ premium_form.type.errors }}{{ premium_form.type }}
{% endif %} {% endblock %}