{% extends "base.html" %} {% load static from staticfiles %} {% block headers %} {% endblock %} {% block content %}

Profile Requests

{% if not profile_requests %}
No profile requests in database.
{% else %} {% for r in profile_requests %} {% endfor %}
Username First Name Last Name E-mail Request Date Affiliation
{{ r.username }} {{ r.first_name }} {{ r.last_name }} {{ r.email }} {{ r.request_date }} {% for choice in choices %}{% if r.affiliation == choice.0 %}{{ choice.1 }}{% endif %}{% endfor %}
{% endif %}
Don't know how profile requests work? Check out the Profile Requests sub-section of the help page.
{% endblock %}