{% 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:

To embed a video from YouTube:

Go to the page where you watch the video. Under the video, click "Share".

A new set of options will open up. Click the "Embed" button.

This will generate some code for you to copy/paste into the box below. It will look something like this:

<iframe width="444" height="301" src="http://www.youtube-nocookie.com/embed/adeDb0BRMZY?rel=0" frameborder="0" allowfullscreen></iframe>

Copy/paste that text into the box below. Delete the part that says "http:" (shown in red in the example). You're done! We'll figure out the details.

Of course, if you want to include other text in addition to video, you can do that.

If you'd like to change the size of the video, feel free; just don't make it more than 445px wide. Leaving it the default size is fine, too.

If you'd like to embed a video from another source, please talk to us. You certainly can; we just want to make sure we've given you the right instructions.

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 %}