{% extends "utility_page.html" %} {% load staticfiles %} {% load i18n %} {% load proposal_tags %} {% load review_tags %} {% load teams_tags %} {% load registrasion_tags %} {% load lca2018_tags %} {% load staticfiles %} {% block header_title %}linux.conf.au 2019{% endblock %} {% block header_lead %}User Dashboard{% endblock %} {% block main_class %}{% endblock %} {% block content %} {% available_categories as categories %}

Dashboard

{% if categories %} {% include "symposion/dashboard/_categories.html" %} {% endif %}
{% include "symposion/dashboard/speaking.html" %}
{% if user.speaker_profile %} {% if user.speaker_profile.proposals.exists %}

Your Proposals

{% for proposal in user.speaker_profile.proposals.all %} {% include "symposion/proposals/_proposal_row.html" %} {% endfor %}
{% endif %} {% endif %} {% if user.speaker_profile %} {% associated_proposals as associated_proposals %} {% pending_proposals as pending_proposals %} {% if associated_proposals or pending_proposals %}
{% for proposal in associated_proposals %} {% include "symposion/proposals/_proposal_row.html" %} {% endfor %} {% for proposal in pending_proposals %} {% include "symposion/proposals/_pending_proposal_row.html" %} {% endfor %}
{% endif %} {% endif %} {% if review_sections %}

{% trans "Reviews" %}

{% for section in review_sections %}

{{ section }}

{% if section in manage_sections %} {% endif %}
{% endfor %} {% endif %}
{% available_teams as available_teams %} {% if user.memberships.exists or available_teams %}
{% if user.memberships.exists %}
{% for membership in user.memberships.all %}
{{ membership.team.name }}
{% if membership.team.description %}

{{ membership.team.description }}

{% endif %} Details {{ membership.get_state_display }} {% if membership.state == "manager" or user.is_staff %} {% if membership.team.applicants %}{{ membership.team.applicants.count }} applicant{{ membership.team.applicants.count|pluralize }}{% endif %} {% endif %}
{% endfor %}
{% endif %}
{% if available_teams %}
{% for team in available_teams %}
{{ team }}
{% if team.description %}

{{ team.description }}

{% endif %} {{ team.get_access_display }} Details
{% endfor %}
{% endif %}
{% endif %} {% endblock %} {% block scripts_extra %} {% endblock %}