{% extends 'basedocumentation.html' %}
{% block title %} Rights Holder Agreement {% endblock %}
{% block extra_extra_head %}
{{ block.super }}
{% endblock %}
{% block topsection %}
{% endblock %}
{% block doccontent %}
{% with rights_holder_name='[Rights Holder]' signer_title='[Signer Title]' signer_note='(Type your name to enter your electronic signature.)' %}
{% if request.user.is_authenticated %}
{% with owner=request.user.username%}
{% include 'rights_holder_agreement.html' %}
{% endwith %}
{% else %}
Please log in or create an account to use the rights holder agreement.
{% with owner='[unglue.it username]'%}
{% include 'rights_holder_agreement.html' %}
{% endwith %}
{% endif %}
{% endwith %}
{% endblock %}