2011-11-15 23:20:29 +00:00
|
|
|
{% extends "basedocumentation.html" %}
|
2011-11-16 19:45:37 +00:00
|
|
|
{% block title %}Claim Form{% endblock %}
|
2011-11-15 23:20:29 +00:00
|
|
|
{% block doccontent %}
|
|
|
|
|
2011-11-18 18:27:26 +00:00
|
|
|
<h2>Rights Holder Claim Form </h2>
|
2011-11-15 23:20:29 +00:00
|
|
|
<form method="POST" action="#">
|
|
|
|
{% csrf_token %}
|
2011-11-18 18:27:26 +00:00
|
|
|
<h3> Rightsholder making claim </h3>
|
2011-11-16 05:22:22 +00:00
|
|
|
{{ rights_holder.rights_holder_name }}
|
2011-11-18 18:27:26 +00:00
|
|
|
<h3> Work being claimed </h3>
|
|
|
|
<ul>
|
2011-11-18 20:11:17 +00:00
|
|
|
<li>Title: {{ work.title }}</li>
|
|
|
|
<li>Author: {{ work.author }}</li>
|
2011-11-18 18:27:26 +00:00
|
|
|
</ul>
|
|
|
|
<h3> Terms and Conditions </h3>
|
2011-11-15 23:20:29 +00:00
|
|
|
{{ form.as_p }}
|
2011-11-16 05:22:22 +00:00
|
|
|
[legal stuff goes here]
|
2011-11-15 23:20:29 +00:00
|
|
|
<input type="submit" name="submit" value="Confirm Claim" id="submit">
|
|
|
|
</form>
|
|
|
|
|
|
|
|
|
|
|
|
{% endblock %}
|