added rightsholder tools link

pull/1/head
Andromeda Yelton 2011-10-03 12:51:30 -04:00
parent 77eb1db0ce
commit d652c2ac06
3 changed files with 34 additions and 3 deletions

View File

@ -1,6 +1,8 @@
<!DOCTYPE html>
{# raw url references raise test errors in tests for django registration; this is a workaround #}
{% url privacy as privacyurl %}
{% url rightsholders as rhtoolsurl %}
<html>
<head>
<title>unglue.it {% block title %}{% endblock %}</title>
@ -45,9 +47,13 @@
</div>
<div id="footer">
<ul class="menu">
<li><a href="{{privacyurl}}"><span>Privacy</span></a></li>
</ul>
<p>
<a href="{{privacyurl}}"><span>Privacy</span></a>&nbsp;&nbsp;&nbsp;&nbsp;
<a href="{{rhtools}}"><span>Rightsholder tools</span></a>&nbsp;&nbsp;&nbsp;&nbsp;
{% if user.is_authenticated %}
<a href="{{editurl}}"><span>Settings</span></a>&nbsp;&nbsp;&nbsp;&nbsp;
{% endif %}
</p>
</div>
</body>

View File

@ -0,0 +1,23 @@
{% extends "base.html" %}
{% block content %}
<h1>unglue.it tools for rightsholders</h1>
<h2>Rightsholder social media tools</h2>
Coming soon.
<h2>Rewards</h2>
Campaigns have rewards as a way to thank supporters. unglue.it includes a standard set of rewards in all campaigns. You are encouraged to add additional sweeteners to motivate people to donate.
Here are the standard rewards:
<ul>
<li><em>Any level</em> &#8212; The unglued ebook delivered to your inbox</li>
<li><em>$25</em> &#8212; Your name under "supporters" in the acknowledgements section</li>
<li><em>$50</em> &#8212; Your name & link of your choice under "benefactors"</li>
<li><em>$100</em> &#8212; Your name, link of your choice, & a brief message (140 characters max) under "bibliophiles"</li>
</ul>
{% endblock %}

View File

@ -9,5 +9,7 @@ urlpatterns = patterns(
url(r"^search/$", "search", name="search"),
url(r"^privacy/$", TemplateView.as_view(template_name="privacy.html"),
name="privacy"),
url(r"^rightsholders/$", TemplateView.as_view(template_name="rhtools.html"),
name="rightsholders"),
url(r"^wishlist/$", "wishlist", name="wishlist"),
)