{% extends "tree.html" %} {% load datehumanize %} {% block widgets %} $("#gravatar").append($.gravatar($('#email').text())); $("#names").accordion({ header: 'h3', collapsible: true, active: false }); $("#memberships").accordion({ header: 'h3', collapsible: true, active: false }); {% endblock %} {% block content %}

Memberships

{% for m in memberships.all %}

{{m.name.shortname}}

You became a member of {{m.name.shortname}} {{m.timecreated|datehumanize}}
{% empty %}

You are not a member of any groups yet...

{% endfor %}

Groups

{% for n,p in names %}

{{n.shortname}}

{{n.shortname}}
{% empty %}

You do not have control over any groups yet...

{% endfor %}
{% endblock %}