{% extends "base/base.html" %} {% load static %} {% block title %} Profile - {{ user.username }} {% endblock title %} {% block page_heading %} Profile - {{ user.username }} {% endblock page_heading %} {% block main_content %}

{{ user.first_name }}

{{ user.username }}

Groups: {{ user_groups }} | {{ user.email }}

User groups:
{% csrf_token %}
{% for g in all_groups %}
{% endfor %}

(Some choices imply others; read more about user groups in Plom's documentation.)

{% endblock main_content %}