{% extends "site_base.html" %} {% load static %} {% load i18n %} {% load review_tags %} {% load teams_tags %} {% load registrasion_tags %} {% load lca2018_tags %} {% block head_title %}Dashboard{% endblock %} {% block page_title %}User Dashboard{% endblock %} {% block alert %} {% endblock %} {% block content %} {% available_categories as categories %} {% if categories %} {% include "symposion/dashboard/_categories.html" %} {% endif %}
{% include "symposion/dashboard/speaking.html" %}
{% if review_sections %}

{% trans "Reviews" %}

{% for section in review_sections %}

{{ section }}

{% endfor %}
{% endif %} {% available_teams as available_teams %} {% if user.memberships.exists or available_teams %}

{% trans "Teams "%}

{% if user.memberships.exists %}

Your Teams

{% for membership in user.memberships.all %}
{% include "symposion/teams/_team_row.html" with team=membership.team %}
{% endfor %}
{% endif %} {% if available_teams %}

Available Teams

{% for team in available_teams %}
{% include "symposion/teams/_team_row.html" %}
{% endfor %}
{% endif %}
{% endif %} {% endblock %} {% block scripts_extra %} {% endblock %}