{% extends "basedocumentation.html" %} {% block title %}Campaign Management{% endblock %} {% block doccontent %} {% if not request.user in campaign.managers.all %}

You're not a manager for this campaign

{% else %}

Manage the campaign

The work

Title: {{ campaign.work.title }}

Authors: {{ campaign.work.author }}

Published: {{ campaign.work.editions.all.0.publication_date }}

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

Description of the offering

{% csrf_token %}

This should include:

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

Offer details

This 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.

{{ campaign.errors }}
{% endif %} {% endblock %}