{% extends "base.html" %} {% block title %}Account Request{% endblock %} {% block content %}

Account Request

{{ person_request.html_timestamps() }}

Firstname: {{ person_request.firstname }}
Lastname: {{ person_request.lastname }}
Email: {{ person_request.email }}
Affiliation: {{ person_request.affiliation }}
Position: {{ person_request.position }} 
Notes: {{ person_request.notes }}
Managed: {% if person_request.managed %}yes{% else %}no{% endif %}

{% if person_request.managed %}
{% else %}
{% if persons %}

Choose person to link

{% for person in persons %} {{ person.html() }} {% if person.email %}
Person has email: {{ person.email }}. {% if person.email != person_request.email %} Email differs from request email. Maybe person has changed email? {% endif %} {% endif %} {% if person.user %}
Person already has username {{ person.user.username }} and associated password. Maybe password was forgot? If you choose this option password will be changed and sent to the requested email address. {% endif %} {% if person.papers.all() %}
Papers associated to this person:

{% endif %}
{% endfor %} new person

{% endif %}

To accept the request, confirm then

To ignore the request, confirm then

To send an email message to the requester (and mark the request as managed), modify the message below
From: {{ user.person.email }}
To: {{ person_request.email }}
Subject:
Body:
confirm and then

{% endif %} {% endblock %}