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

Modify Profile Request


{% if provider and uid %}
This is an OAuth request from provider {{ provider }} with UID {{ uid }}.
{% endif %} {% if affiliation_message %}
Affiliation message: {{ affiliation_message }}
{% endif %}
{% csrf_token %}
{{ add_user_form|bootstrap }}

Existing Users


{% for member in members %} {% endfor %}
Username First Name Last Name
{{ member.username }} {{ member.first_name }} {{ member.last_name }}
{% endblock %} {% block endscripts %} {% endblock %}