improve wording about revenue goal on campaign management page

pull/1/head
eric 2014-05-05 16:26:48 -04:00
parent a7b9581919
commit 362890e313
1 changed files with 15 additions and 8 deletions

View File

@ -207,14 +207,14 @@ Please fix the following before launching your campaign:
{{ form.deadline.errors }}{{ form.deadline }} {{ form.deadline.errors }}{{ form.deadline }}
{% endifequal %} {% endifequal %}
{% ifequal campaign.type 2 %} {% ifequal campaign.type 2 %}
<h3>Revenue Target</h3> <h3>Revenue Goal</h3>
<p>This is the revenue target for your campaign. If you hit this target, your book gets released immediately, for free, under the Creative Commons License that you've specified. With time the actual revenue needed to trigger Creative Commons will gradually decrease.</p> <p>This is the initial revenue goal for your campaign. Once the campaign starts, the actual revenue goal will decrement every day. When your actual revenue meets your actual revenue goal, your book gets released immediately, for free, under the Creative Commons License that you've specified. </p>
<p>The <i>minimum</i> revenue target is ${{form.minimum_target|intcomma}}.The <i>maximum</i> revenue target is ${{form.maximum_target|intcomma}}. Yep. </p> <p>The <i>minimum</i> revenue goal is ${{form.minimum_target|intcomma}}.The <i>maximum</i> revenue goal is ${{form.maximum_target|intcomma}}. Yep. </p>
<p>Your target should be high enough to compensate you for potential lost future revenue from sales of this edition and reflect well on your brand, but low enough to seem realistic to supporters; people are more likely to back campaigns that they think will succeed. You can get a feel for the interplay between revenue target and ungluing date with the <a href="{% url faq_sublocation 'campaigns' 'b2u' %}#calculator">the ungluing date calculator</a></p> <p>Your goal should be high enough to compensate you for potential lost future revenue from sales of this edition and reflect well on your brand, but low enough to seem realistic to supporters; people are more likely to back campaigns that they think will succeed. You can get a feel for the interplay between revenue goal and ungluing date with the <a href="{% url faq_sublocation 'campaigns' 'b2u' %}#calculator">the ungluing date calculator</a></p>
<p>Once you launch the campaign, you'll be able to decrease your target, but not increase it.</p> <p>Once you launch the campaign, you'll be able to decrease your goal, but not increase it.</p>
<p>Please email us if you want to talk about pricing strategy.</p> <p>Please email us if you want to talk about pricing strategy.</p>
<div class="std_form"> <div class="std_form">
@ -223,7 +223,7 @@ Please fix the following before launching your campaign:
<h3>Initial Ungluing Date</h3> <h3>Initial Ungluing Date</h3>
<p>When you launch a Buy-To-Unglue campaign, you will specify a date in the future at which your book will become Creative Commons Licensed. eBooks sold via unglue.it will include a notice of this license. With every sale, the effective date of this license will advance a bit toward the present. </p> <p>When you launch a Buy-To-Unglue campaign, you will specify a date in the future at which your book will become Creative Commons Licensed. eBooks sold via unglue.it will include a notice of this license. With every sale, the effective date of this license will advance a bit toward the present. </p>
<p>Before launching a campaign, you'll need to select Your initial Ungluing Date. Together with your campaign revenue target, this will define when your book becomes "unglued". Check out the <a href="{% url faq_sublocation 'campaigns' 'b2u' %}#calculator">the ungluing date calculator</a> to see how this works. Your starting Ungluing Date must be before {{ form.max_cc_date }}</p> <p>Before launching a campaign, you'll need to select Your initial Ungluing Date. Together with your campaign revenue goal, this will define when your book becomes "unglued". Check out the <a href="{% url faq_sublocation 'campaigns' 'b2u' %}#calculator">the ungluing date calculator</a> to see how this works. Your starting Ungluing Date must be before {{ form.max_cc_date }}</p>
{{ form.cc_date_initial.errors }}{{ form.cc_date_initial }} {{ form.cc_date_initial.errors }}{{ form.cc_date_initial }}
<!--{{ form.deadline.errors }}--> <!--{{ form.deadline.errors }}-->
{% endifequal %} {% endifequal %}
@ -241,13 +241,20 @@ Please fix the following before launching your campaign:
<div> <div>
{{ form.license.errors }}<span>{{ form.license }}</span> {{ form.license.errors }}<span>{{ form.license }}</span>
</div> </div>
{% ifnotequal campaign.type 3 %} {% ifequal campaign.type 1 %}
<h3>Target Revenue</h3> <h3>Target Revenue</h3>
<p>The current target revenue for your campaign is <b>${{ campaign.target|intcomma }}</b>. Since your campaign is active, you may lower, but not raise, this target. You can get a feel for the interplay between revenue target and ungluing date with the <a href="{% url faq_sublocation 'campaigns' 'b2u' %}#calculator">the ungluing date calculator</a></p> <p>The current target revenue for your campaign is <b>${{ campaign.target|intcomma }}</b>. Since your campaign is active, you may lower, but not raise, this target. You can get a feel for the interplay between revenue target and ungluing date with the <a href="{% url faq_sublocation 'campaigns' 'b2u' %}#calculator">the ungluing date calculator</a></p>
<div class="std_form"> <div class="std_form">
${{ form.target.errors }}{{ form.target }} ${{ form.target.errors }}{{ form.target }}
</div> </div>
{% endifnotequal %} {% endifequal %}
{% ifequal campaign.type 2 %}
<h3>Initial Revenue Goal</h3>
<p>The initial revenue goal for your campaign was <b>${{ campaign.target|intcomma }}</b>; the current amount remaining is <b>${{ campaign.left|intcomma }}</b>. Since your campaign is active, you may lower, but not raise, this goal. Before you change this, try different parameters with <a href="{% url faq_sublocation 'campaigns' 'b2u' %}#calculator">the ungluing date calculator</a>. </p>
<div class="std_form">
${{ form.target.errors }}{{ form.target }}
</div>
{% endifequal %}
{% ifequal campaign.type 1 %} {% ifequal campaign.type 1 %}
<h3>Ending date</h3> <h3>Ending date</h3>
<p>The ending date of your campaign is <b>{{ campaign.deadline }}</b>. Your campaign will conclude on this date or when you meet your target price, whichever is earlier. You may not change the ending date of an active campaign.</p> <p>The ending date of your campaign is <b>{{ campaign.deadline }}</b>. Your campaign will conclude on this date or when you meet your target price, whichever is earlier. You may not change the ending date of an active campaign.</p>