regluit/frontend/templates/rh_tools.html

231 lines
12 KiB
HTML
Raw Normal View History

{% extends "basedocumentation.html" %}
{% block title %}Tools for Rightsholders {% endblock %}
{% block extra_extra_head %}
<link rel="stylesheet" href="https://ajax.googleapis.com/ajax/libs/jqueryui/1.8.13/themes/ui-lightness/jquery-ui.css" type="text/css" media="screen">
2012-10-02 22:12:44 +00:00
<link href="/static/selectable/css/dj.selectable.css" type="text/css" media="all" rel="stylesheet" />
2012-03-08 02:47:40 +00:00
<script type="text/javascript" src="{{ jquery_ui_home }}"></script>
2012-10-02 22:12:44 +00:00
<script type="text/javascript" src="/static/selectable/js/jquery.dj.selectable.js"></script>
{% endblock %}
2012-05-08 13:27:03 +00:00
{% block topsection %}
{% endblock %}
{% block doccontent %}
2011-11-20 22:43:55 +00:00
<h1>unglue.it Tools for Rightsholders</h1>
2012-01-15 18:19:35 +00:00
<div class="presstoc"><div class="pressemail">
Any questions not covered here? Please email us at <a href="mailto:rights@gluejar.com">rights@gluejar.com</a>.
</div></div>
2013-01-03 18:46:32 +00:00
<h2>Getting started</h2>
<p>
<a href="/static/images/How_to_claim_your_work.mp4">How to claim your work</a> (screencast)
</p>
<p>
<a href="/static/images/How_to_set_up_your_campaign.mp4">How to set up your campaign</a> (screencast)
</p>
2013-01-03 18:58:17 +00:00
<p>
<a href="/static/images/How_to_embed_a_widget.mp4">How to embed a widget for your book</a> in your blog, web site, etc. (screencast)
</p>
2013-01-09 18:07:03 +00:00
<p>
<a href="/static/images/How_to_embed_a_PDF.mp4">How to embed a PDF</a> in your campaign page (screencast)
</p>
<p>
<a href="/static/images/How_to_embed_a_video.mp4">How to embed a video</a> in your campaign page (screencast)
</p>
{% if campaigns %}
<h2>Campaigns You Manage</h2>
<dl>
{% for campaign in campaigns %}
<dt>Work: <a href="{% url work work_id=campaign.work.id %}">{{campaign.work.title }}</a></dt>
<dd>
<div class="work_campaigns clearfix">
<div class="campaign_info">
Campaign: {{ campaign.name }}<br />
Campaign status: {{ campaign.status }} <br />
Created: {{ campaign.created }}<br />
{% ifequal campaign.type 1 %}
${{ campaign.current_total }} pledged of ${{ campaign.target }}, {{ campaign.supporters_count }} supporters
{% else %}
${{ campaign.current_total }} sold. ${{ campaign.target }} to go. Ungluing Date: {{ campaign.cc_date }}
{% endifequal %}
</div>
{% if campaign.status = 'ACTIVE' or campaign.status = 'INITIALIZED' %}
<div>
<a href="{% url manage_campaign campaign.id %}" class="manage">Manage This Campaign</a>
</div>
{% endif %}
{% if campaign.clone_form %}
<div>
<form method="POST" action="#">
{% csrf_token %}
{{ campaign.clone_form }}{{ campaign.clone_form.errors }}
<input type="submit" name="clone" value="Clone this Campaign">
</form>
</div>
{% endif %}
</div>
</dd>
{% endfor %}
</dl>
{% endif %}
{% if request.user.rights_holder.count %}
2011-11-20 22:43:55 +00:00
<h2>Works You Have Claimed</h2>
<dl>
{% for claim in claims %}
<dt>Title: <a href="{% url work work_id=claim.work.id %}">{{claim.work.title }}</a>&nbsp;&nbsp;&nbsp;(work #{{ claim.work.id }})</dt>
<dd>Author: {{claim.work.author }}
<br />On Behalf of: {{ claim.rights_holder.rights_holder_name }}
<br />PSA #: {{ claim.rights_holder.id }}
<br />Date of Claim : {{ claim.created }}
<br />Status of Claim: {{ claim.get_status_display }}
{% if claim.can_open_new %}
<h3>Open a blank campaign for this work</h3>
<form method="POST" action="#">
{% csrf_token %}
<p>Name the Campaign: {{ claim.campaign_form.name }}{{ claim.campaign_form.name.errors }}</p>
{% if claim.rights_holder.can_sell %}
<p>Choose the Campaign Type: {{ claim.campaign_form.type }}{{ claim.campaign_form.type.errors }}</p>
<p>You can use <i>Buy-To-Unglue</i> These campaigns do not have a fixed end date. When your gross sales reach the target you set, the book is released in an open-access <i>unglued</i> edition.</p>
{% else %}
<input type="hidden" id="type" name="type" value="1" />
{% endif %}
<div style="width:200px" >Choose your Campaign Manager(s): {{ claim.campaign_form.managers }}{{ claim.campaign_form.managers.errors }}</div>
<p>
{{ claim.campaign_form.work }}{{ claim.campaign_form.work.errors }}
{{ claim.campaign_form.userid }}{{ claim.campaign_form.userid.errors }}
</p>
<input type="submit" name="submit" value="Open Campaign">
</form>
{% else %}{%if claim.campaigns %}
2011-11-20 22:43:55 +00:00
<h3>Campaigns for this work</h3>
{% for campaign in claim.campaigns %}
<div class="work_campaigns clearfix">
{% if campaign.status = 'ACTIVE' or campaign.status = 'INITIALIZED' %}
<div class="campaign_info">
Name: Your campaign, "{{ campaign.name }}", is {{ campaign.status }}<br />
Created: {{ campaign.created }}<br />
Manager(s): {% for user in campaign.managers.all %} <a href="{% url supporter user.username %}">{{ user.username }} </a> {% endfor %}
<form method="POST" action="#">{% csrf_token %}
Add/Remove Managers: {{ campaign.edit_managers_form.managers }}{{ campaign.edit_managers_form.managers.errors }}
<input type="submit" name="edit_managers_{{campaign.id}}" value="Save Managers">
</form>
</div>
{% if request.user in campaign.managers.all %}
<div>
<a href="{% url manage_campaign campaign.id %}" class="manage">Manage This Campaign</a>
</div>
{% endif %}
{% else %}
<div class="campaign_info">
Name: Your campaign, "{{ campaign.name }}", is {{ campaign.status }}<br />
Created: {{ campaign.created }}<br />
Manager(s): {% for user in campaign.managers.all %} <a href="{% url supporter user.username %}">{{ user.username }} </a> {% endfor %}
<br />
{% ifequal campaign.type 1 %}
${{ campaign.current_total }} pledged of ${{ campaign.target }}, {{ campaign.supporters_count }} supporters
{% else %}
${{ campaign.current_total }} sold. ${{ campaign.target }} to go, Ungluing Date: {{ campaign.cc_date }}
{% endifequal %}
</div>
{% endif %}
</div>
{% endfor %}
{% endif %}
{% endif %}
{% if claim.work.first_ebook %}
<h4> Ebooks for this work </h4>
<div class="work_campaigns">
<ul>
{% for ebook in claim.work.ebooks %}
<li> edition #{{ebook.edition.id}} {{ ebook.format }}
{{ ebook.download_count }} downloads
</li>
{% endfor %}
</ul>
</div>
{% endif %}
</dd>
{% endfor %}
</dl>
{% endif %}
2011-11-20 22:43:55 +00:00
{% if request.user.rights_holder.count %}
<h2>Rights Holders That You Administer</h2>
<dl>
{% for rights_holder in request.user.rights_holder.all %}
<dt>Name: {{ rights_holder.rights_holder_name }}&nbsp;&nbsp;&nbsp;(rights holder #{{ rights_holder.id }})</dt>
2011-11-20 22:43:55 +00:00
<dd>PSA #: {{ rights_holder.id }}
<br />contact email: {{ rights_holder.email }}</dd>
{% endfor %}
</dl>
2012-04-04 18:22:31 +00:00
{% else %}
<I>If you were a registered rights holder with Unglue.it, you'd be able to see and manage your campaigns here. If you hold electronic rights to one or more works and you'd like to be a registered rights holder, please contact us at <a href="mailto:rights@gluejar.com">rights@gluejar.com</a>.</I>
2011-11-20 22:43:55 +00:00
{% endif %}
<h2>How to launch an Unglue.it campaign</h2>
<ol>
2013-11-06 20:34:11 +00:00
{% if not request.user.is_authenticated %}
<li>Set up an Unglue.it account. (<a href="{% url registration_register %}?next={% url rightsholders %}">Click here</a> or use the Sign Up button at the top of the page).</li>
{% else %}
<li class="checked">You've already set up an Unglue.it account.</li>
{% endif %}
{% if not request.user.rights_holder.count %}<li>{% else %}<li class="checked">{% endif %}Email <a href="mailto:rights@gluejar.com?subject=Becoming%20an%20authorized%20rights%20holder">rights@gluejar.com</a> about becoming an authorized rights holder.</li>
2013-11-12 16:35:12 +00:00
{% if not request.user.rights_holder.count %}<li>{% else %}<li class="checked">{% endif %}After we review your credentials, sign a <a href="https://www.docracy.com/1mud3ve9w8/unglue-it-non-exclusive-platform-services-agreement">Platform Services Agreement</a>.</li>
<li>Claim your work(s)...
2012-10-05 15:30:49 +00:00
<ul>
<li>Find them through the search box at the top of every page.</li>
2013-08-05 21:40:42 +00:00
<li>Use the Claim option on the More... tab of each book's page.</li>
2012-10-05 15:30:49 +00:00
<li>Agree to our <a href="{{ termsurl }}">Terms</a> on the following page. This includes agreeing that you are making the claim in good faith and can substantiate that you have legal control over worldwide electronic rights to the work.</li>
2013-11-06 20:34:11 +00:00
<li>If you have any questions or you claim a work by mistake, <a href="mailto:rights@gluejar.com?subject=claiming%20works">email us</a>.</li>
2013-03-08 02:53:32 +00:00
<li>We will review your claim. We may contact you at {{ request.user.email }} if we have any questions. If this is the wrong email address, please <a href="{% url regluit.frontend.views.edit_user %}">change the email address</a> for your account.</li>
</ul></li>
<li>...or send us metadata for books you have rights to.
<ul>
<li>Your ebooks must have ISBNs assigned.</li>
<li>Your metadata should have title, authors, language, description.</li>
2013-11-06 20:34:11 +00:00
<li><a href="mailto:support@gluejar.com?subject=loading%20metadata">Contact us</a> to load ONIX or CSV files for you.</li>
</ul></li>
2013-11-06 20:34:11 +00:00
<li>Once your claim is approved (you should get an email), you can set up a campaign for it. All the campaigns you can manage will be listed on this page, above.</li>
<li>You may optionally add other Unglue.it users as campaign managers, if you'd like them to be able to edit your campaign. That option will also appear on this page, above.</li>
</ol>
<h2>Campaigns </h2>
2013-11-03 04:07:52 +00:00
<p> if you have an EPUB file ready to sell, you should use a "Buy to Unglue" campaign. Otherwise, you'll want to offer rewards in a "Pledge" campaign. </p>
2013-11-06 20:34:11 +00:00
<p>For Pledge campaigns, you can run campaigns for books that haven't been converted to digital.
2013-11-03 04:07:52 +00:00
Any print book can be scanned to create a digital file that can then become an ePub-format unglued ebook to be released after the Pledge Campaign succeeds.</p>
2013-11-06 20:34:11 +00:00
<h2>Buy-to-Unglue Campaigns</h2>
<p>Buy-to-Unglue is a program that sells ebook licenses to reach the campaign goal. To enable ebook sales, you'll need to upload an epub file for each book.
There are no “rewards” for a “Buy to Unglue” campaign, but you may offer time-limited, special price promotions for the ebook.</p>
2013-11-03 04:07:52 +00:00
2013-11-04 18:24:43 +00:00
<p>
A Buy-to-Unglue Campaign provides long-term promotion and sales opportunities for your ebook before it becomes an Unglued Ebook. Until the revenue goal is reached, supporters and libraries know that every book that gets purchased through Unglue.it brings the ungluing date closer to the present.
</p>
2013-11-06 20:34:11 +00:00
<h2>Rewards for Pledge Campaigns</h2>
2013-11-04 18:24:43 +00:00
<p>Campaigns run for a short period (2-6 months) and can have rewards as a way to motivate and thank supporters for helping to reach your goal. You are strongly encouraged to add rewards - they are given special prominence on the campaign page.</p>
2012-10-05 15:30:49 +00:00
<p>What should you add as rewards? Anything (legal) that you think you can reasonably deliver that will get supporters excited about the book. For example: other books, whether electronic or physical; artwork or multimedia relating to the book, its author, or its themes; in-person or online chats with the author; memorabilia.</p>
<h2>Acknowledgements for Pledge Campaigns</h2>
<p>Here are the standard acknowledgements. These automatically combine with your rewards. For example, if you offer a $30 reward, ungluers who pledge $30 will receive the $25 acknowledgement as well.</p>
2012-03-23 15:13:11 +00:00
<ul class="terms">
<li><em>Any amount</em> &#8212; The unglued ebook</li>
<li><em>$25 and above</em> &#8212; Their name in the acknowledgements section under "supporters"</li>
<li><em>$50 and above</em> &#8212; Their name &amp; profile link under "benefactors"</li>
<li><em>$100 and above</em> &#8212; Their name, profile link, &amp; a dedication under "bibliophiles"</li>
</ul>
2011-11-20 22:43:55 +00:00
<h2>More Questions</h2>
2012-10-05 15:30:49 +00:00
<p> Check the FAQ to the left, or <a href="/feedback">send us feedback.</a>
{% endblock %}