{% extends "basedocumentation.html" %} {% block title %}Claim Form{% endblock %} {% block doccontent %}

Rights Holder Claim Form

Rightsholder making claim

{{ rights_holder.rights_holder_name }}

Work being claimed

{% if work.claim.count %} {% for otherclaim in work.claim.all %} {% ifequal rights_holder.id otherclaim.rights_holder.id %}

This work has already been claimed by {{ rights_holder.rights_holder_name }}

{% else %}

This work has previously been claimed by {{ otherclaim.rights_holder.rights_holder_name }}. Please take careful note of the "interfering claims" section below.

{% csrf_token %} {{ form.as_p }} {% include "claim_terms.html" %}
{% endifequal %} {% endfor %} {% else %}
{% csrf_token %} {{ form.as_p }} {% include "claim_terms.html" %}
{% endif %} {% endblock %}