{% extends "base.html" %} {% load static from staticfiles %} {% block content %}
Username | First Name | Last Name | 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 %} |