{% extends "site_base.html" %} {% load i18n %} {% load proposal_tags %} {% block head_title %}Dashboard{% endblock %} {% block body_class %}auth{% endblock %} {% block body %}

{% trans "Dashboard" %}

{% trans "Speaking" %}

{% if not user.speaker_profile %}

To submit a proposal, you must first create a speaker profile.

Create a speaker profile
{% else %} Edit your speaker profile Submit a new proposal

Your Proposals

{% if user.speaker_profile.proposals.exists %} {% for proposal in user.speaker_profile.proposals.all %} {% include "proposals/_proposal_row.html" %} {% endfor %}
Title Session type Status Actions
{% else %}

No proposals submitted yet.

{% endif %} {% associated_proposals as associated_proposals %} {% if associated_proposals %}

Proposals you have joined as an additional speaker

{% for proposal in associated_proposals %} {% include "proposals/_proposal_row.html" %} {% endfor %}
Title Session type Status Actions
{% endif %} {% pending_proposals as pending_proposals %} {% if pending_proposals %}

Proposals you have been invited to join

{% for proposal in pending_proposals %} {% include "proposals/_pending_proposal_row.html" %} {% endfor %}
Title Session type Status Actions
{% endif %} {% endif %}

{% trans "Sponsorship" %}

{% if not user.sponsorships.exists %} Apply to be a sponsor {% else %}

Your Sponsorship

{% endif %}
{% endblock %}