2011-11-20 02:12:18 +00:00
{% extends "basedocumentation.html" %}
{% block title %}Tools for Rightsholders {% endblock %}
2011-11-21 20:07:10 +00:00
{% block extra_extra_head %}
2011-11-20 02:12:18 +00:00
< 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 >
2011-11-20 02:12:18 +00:00
{% endblock %}
2012-05-08 13:27:03 +00:00
{% block topsection %}
{% endblock %}
2011-11-20 02:12:18 +00:00
{% 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 >
2012-09-21 16:10:13 +00:00
{% if campaigns %}
2011-11-21 03:23:51 +00:00
< h2 > Campaigns You Manage< / h2 >
< dl >
2012-09-21 16:10:13 +00:00
{% for campaign in campaigns %}
2011-11-21 03:23:51 +00:00
< dt > Work: < a href = "{% url work work_id=campaign.work.id %}" > {{campaign.work.title }}< / a > < / dt >
2012-04-05 21:54:33 +00:00
< dd >
< div class = "work_campaigns clearfix" >
< div class = "campaign_info" >
Campaign: {{ campaign.name }}< br / >
2012-04-03 18:58:32 +00:00
Campaign status: {{ campaign.status }} < br / >
2012-09-21 16:32:32 +00:00
Created: {{ campaign.created }}< br / >
${{ campaign.current_total }} pledged of ${{ campaign.target }}, {{ campaign.supporters_count }} supporters
2012-04-03 18:58:32 +00:00
< / div >
2012-09-21 16:10:13 +00:00
{% 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 %}
2012-04-03 18:58:32 +00:00
< / div >
2012-04-05 21:54:33 +00:00
< / dd >
2011-11-21 03:23:51 +00:00
{% endfor %}
< / dl >
{% endif %}
2011-11-20 02:12:18 +00:00
{% if request.user.rights_holder.count %}
2011-11-20 22:43:55 +00:00
< h2 > Works You Have Claimed< / h2 >
2011-11-20 02:12:18 +00:00
< dl >
{% for claim in claims %}
2012-04-03 19:54:12 +00:00
< dt > Title: < a href = "{% url work work_id=claim.work.id %}" > {{claim.work.title }}< / a > (work #{{ claim.work.id }})< / dt >
2011-11-20 02:12:18 +00:00
< 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 }}
2012-04-06 01:50:34 +00:00
< br / > Status of Claim: {{ claim.get_status_display }}
2011-11-20 02:12:18 +00:00
{% if claim.can_open_new %}
2012-09-21 16:10:13 +00:00
< h3 > Open a blank campaign for this work< / h3 >
2011-11-20 02:12:18 +00:00
< form method = "POST" action = "#" >
{% csrf_token %}
< p > Name the Campaign: {{ claim.campaign_form.name }}{{ claim.campaign_form.name.errors }}< / p >
2011-11-21 21:05:55 +00:00
< p > Choose your Campaign Manager(s): {{ claim.campaign_form.managers }}{{ claim.campaign_form.managers.errors }}< / p >
2011-11-20 02:12:18 +00:00
< p >
{{ claim.campaign_form.work }}{{ claim.campaign_form.work.errors }}
{{ claim.campaign_form.userid }}{{ claim.campaign_form.userid.errors }}
< / p >
2012-04-05 21:54:33 +00:00
< input type = "submit" name = "submit" value = "Open Campaign" >
2011-11-20 02:12:18 +00:00
< / form >
{% else %}{%if claim.campaigns %}
2011-11-20 22:43:55 +00:00
< h3 > Campaigns for this work< / h3 >
2011-11-20 02:12:18 +00:00
{% for campaign in claim.campaigns %}
2012-04-03 18:58:32 +00:00
< div class = "work_campaigns clearfix" >
2012-09-21 16:10:13 +00:00
{% 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 %}
2012-09-21 16:32:32 +00:00
< br / >
${{ campaign.current_total }} pledged of ${{ campaign.target }}, {{ campaign.supporters_count }} supporters
2012-09-21 16:10:13 +00:00
< / div >
{% endif %}
2012-04-03 18:58:32 +00:00
< / div >
2011-11-20 02:12:18 +00:00
{% endfor %}
{% endif %}
{% endif %}
2013-04-20 14:08:10 +00:00
{% if claim.work.first_ebook %}
< h4 > Ebooks for this work < / h3 >
< 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 %}
2011-11-20 02:12:18 +00:00
< / 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 %}
2012-04-03 19:54:12 +00:00
< dt > Name: {{ rights_holder.rights_holder_name }} (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 %}
2012-05-08 20:15:23 +00:00
< 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 >
2011-11-20 02:12:18 +00:00
< ol >
2012-10-05 15:30:49 +00:00
{% if not request.user.is_authenticated %}< li > {% else %}< li class = "checked" > {% endif %}Set up an Unglue.it account (start at the Sign Up button at the top of the page).< / li >
{% if not request.user.rights_holder.count %}< li > {% else %}< li class = "checked" > {% endif %}Email rights@gluejar.com about becoming an authorized rights holder.< / li >
{% if not request.user.rights_holder.count %}< li > {% else %}< li class = "checked" > {% endif %}After we review your credentials, sign a Platform Services Agreement (available from us).< / li >
< li > Claim your work(s):< / li >
< 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 >
< li > If you have any questions or you claim a work by mistake, email us.< / 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 >
2012-10-05 15:30:49 +00:00
< / ul >
< li > Once your claim is approved, you can set up a campaign for it. All the campaigns you can manage will be listed on this page.< / 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.< / li >
2011-11-20 02:12:18 +00:00
< / ol >
2011-11-20 22:43:55 +00:00
< h2 > Rewards< / h2 >
2011-11-20 02:12:18 +00:00
2012-09-24 14:52:30 +00:00
< p > Campaigns can have rewards as a way to motivate and thank supporters. 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 >
2011-11-20 02:12:18 +00:00
2012-09-24 14:52:30 +00:00
< h2 > Acknowledgements< / 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" >
2012-09-24 14:52:30 +00:00
< li > < em > Any amount< / em > — The unglued ebook< / li >
< li > < em > $25 and above< / em > — Their name in the acknowledgements section under "supporters"< / li >
< li > < em > $50 and above< / em > — Their name & profile link under "benefactors"< / li >
< li > < em > $100 and above< / em > — Their name, profile link, & a dedication under "bibliophiles"< / li >
2011-11-20 02:12:18 +00:00
< / 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 >
2011-11-20 02:12:18 +00:00
{% endblock %}