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

{% trans "Dashboard" %}

This is your dashboard where you can manage all aspects of your involvement in the conference, from talk proposals to sponsorship.

{% block breadcrumbs %}{% endblock %}

Speaking

{% if user.speaker_profile %}

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 %} {% else %}

To submit a proposal, first create a speaker profile.

{% endif %}

Sponsorship

Learn about sponsorship {% if not user.sponsorships.exists %} Apply to be a sponsor {% endif %}
{% if user.sponsorships.exists %}

Your Sponsorship

    {% for sponsorship in user.sponsorships.all %}
  • {% if sponsorship.active %} {{ sponsorship.name }} ({{ sponsorship.level }}) {% else %} {{ sponsorship.name }} ({{ sponsorship.level }}) awaiting approval {% endif %}
  • {% endfor %}
{% endif %}
{% if user.is_staff %} {% endif %}
{% endblock %}