{% extends 'base.html' %} {% with active_page="profiles" %} {% block title %}Profile Information{% endblock %} {% block head %} {{ block.super }} {% endblock %} {% block body %}

Profile info / {{profile.profile.uuid}}

{% csrf_token %}
Edit

Enrollments

{% for enrollment in enrollments %} {% csrf_token %} {% endfor %}
Organization Dates
{{enrollment.organization.name}}
to
un-enroll

Profile Identitites

{% for identity in profile.identities %} {% endfor %}
Name - email - Username - Source
{{identity.name}} - {{identity.email}} - {{identity.username}} - {{identity.source}} {% if profile.profile.uuid != identity.id %} unmerge {% endif %}
{% for uuid in unique_identities %} {% endfor %}
{% endblock %} {% endwith %}