{% extends "basedocumentation.html" %} {% block base_js %}{% endblock %} {% block extra_extra_head %} {{ form.media.css }} {{ form.media.js }} {% endblock %} {% block doccontent %}

Rights Holder Admin

Create New Rights Holder

{% csrf_token %} {{ form.as_p }}

Accepted Rights Holders

{% for rights_holder in rights_holders %}
{{ rights_holder.rights_holder_name }}
PSA #: {{ rights_holder.id }}
email: {{ rights_holder.email }}
owner: {{ rights_holder.owner }}
{% empty %}

No rights holders have been accepted yet

{% endfor %}
{% if pending %}

Pending Claims

{{ pending_formset.management_form }} {% csrf_token %}
{% for claim, claim_form in pending %}
Title: {{claim.work.title }}
Author: {{claim.work.author }}
By: {{ claim.user.username }}
On Behalf of: {{ claim.rights_holder.rights_holder_name }}
PSA #: {{ claim.rights_holder.id }}
Date of Claim : {{ claim.created }}
Status: {{ claim.status }}
Change to:
{{ claim_form.as_p }} {% endfor %}
{% endif %} {% if active_data.count %}

Active Claims: {{ active_data.count }}

{% for claim in active_data %}
Title: {{claim.work.title }}
Author: {{claim.work.author }}
By: {{ claim.user.username }}
On Behalf of: {{ claim.rights_holder.rights_holder_name }}
PSA #: {{ claim.rights_holder.id }}
Date of Claim : {{ claim.created }}
Status: {{ claim.status }}
{% endfor %}
{% endif %} {% endblock %}