{% extends "basedocumentation.html" %} {% block title %}Campaign Management{% 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 %}

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.pretarget }}

End Date: {{ campaign.predeadline }}

Campaign status: {{ campaign.status }}

Description of the offering

{% csrf_token %}

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

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

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 }}{{ form.details.errors }}

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 }}{{ form.target.errors }}

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 }}{{ form.deadline.errors }}

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 }}{{ form.paypal_receiver.errors }}

To save your work, or to launch the campaign, click a button below.

{% endif %} {% endblock %}