{% extends "base.html" %} {% load i18n %} {% block title %}Profile for {{ profile.realname }}{% endblock %} {% block content %}

{% if user == profile.user %}{% trans "Your Teams" %}{% else %}{% trans "Teams" %}{% endif %}

{% for team in teams %}
{{ team.name }}
{{ team.name }}

{% trans "Meetings" %}

{% trans "Events" %}

{% endfor %} {% if user == profile.user %}

{% trans "Events you will be attending" %}

{% for event in my_events %} {{ event.name }} {{ event.local_date_begin|date:"l, d N Y" }} {% trans "at " %}{{ event.local_date_begin|date:"H:i T" }}

{{ event.description }}

{% endfor %} {% endif %}
{% endblock %}