{% extends "site_base.html" %} {% load i18n %} {% load proposal_tags %} {% load review_tags %} {% load teams_tags %} {% load registrasion_tags %} {% block head_title %}Dashboard{% endblock %} {% block body_class %}auth{% endblock %} {% block body %}
{% if not user.speaker_profile %} Create a speaker profile {% else %} Edit your speaker profile Submit a new proposal {% endif %}

{% trans "Speaking" %}

{% if not user.speaker_profile %}

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

{% else %}

Your Proposals

{% if not user.speaker_profile.proposals.exists %}

No proposals submitted yet.

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

Proposals you have joined as an additional speaker

{% for proposal in associated_proposals %} {% include "symposion/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 "symposion/proposals/_pending_proposal_row.html" %} {% endfor %}
Title Session type Status Actions
{% endif %} {% endif %}
{% if not user.attendee.completed_registration %} Register for the conference {% else %} Edit your attendee profile {% items_pending as pending %} {% if pending %} Pay your registration {% endif %} {% endif %}

{% trans "Registration" %}

{% if not user.attendee.completed_registration %}

To attend the conference, you must purchase a ticket. Use our registration form to purchase your ticket. {% else %}

Your registration

{% items_pending as pending %} {% if pending %}
Items pending payment
{% include "registrasion/items_list.html" with items=pending %} {% endif %} {% items_purchased as purchased %} {% if purchased %}
Paid items
{% include "registrasion/items_list.html" with items=purchased %} {% endif %}
Add/Update items
{% available_categories as categories %} {% for category in categories %}
  • {{ category.name }}
  • {% endfor %} {% invoices as invoices %} {% if invoices %}
    Invoices
    {% endif %} {% available_credit as credit %} {% if credit %}

    You have ${{ credit }} leftover from refunded invoices. Contact the conference organisers to put this toward other purchases, or to refund it.

    {% endif %} {% endif %} {% if user.is_staff %}

    Registration reports

    View available reports.

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

    {% trans "Sponsorship" %}

    {% if not user.sponsorships.exists %}

    If you or your organization would be interested in sponsorship opportunities, use our online form to apply to be a sponsor. {% else %}

    Your Sponsorship

    {% endif %} {% if user.is_staff %}

    As staff, you can directly add a sponsor if the organization isn't applying themselves.

    {% endif %}
    {% if review_sections %}

    {% trans "Reviews" %}

    Reviews by Section

    {% comment %}

    My Assignments

    Proposal Title Score
    Title Three -1
    Title Four +2
    {% endcomment %}
    {% 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 %} {% endfor %}
    {{ membership.team.name }} {% if membership.team.description %}
    {{ membership.team.description }}{% endif %}
    {{ 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 %}
    {% endif %} {% if available_teams %}

    Available Teams

    {% for team in available_teams %} {% endfor %}
    {{ team }} {% if team.description %}
    {{ team.description }}{% endif %}
    {{ team.get_access_display }}
    {% endif %}
    {% endif %} {% endblock %}