{% extends "site_base.html" %} {% load i18n %} {% load proposal_tags %} {% load review_tags %} {% load teams_tags %} {% load boxes_tags %} {% block head_title %}{% trans "Dashboard" %}{% endblock %} {% block body_class %}auth{% endblock %} {% block page_title %}{% trans "Dashboard" %}{% endblock %} {% block page_content %}
{% box "dashboard_top" %}
{% if language_form %}

{% trans "Language" %}

{% csrf_token %} {{ language_form.language.help_text }}
{{ language_form.language }}
{% endif %}

{% trans "Speaking" %}

{% if user.speaker_profile %}

{% trans "Your Proposals" %}

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

{% trans "No proposals submitted yet." %}

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

{% trans "Proposals you have joined as an additional speaker" %}

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

{% trans "Proposals you have been invited to join" %}

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

{% trans "To submit a proposal, first create a speaker profile." %}

{% endif %}
{% if user.speaker_profile.all_presentations %}
{% if user.speaker_profile %}

{% trans "Your Presentations" %}

{% for presentation in user.speaker_profile.all_presentations %} {% endfor %}
{% trans "Session Type" %} {% trans "Title" %} {% trans "Slot" %}
{{ presentation.section.name }} {{ presentation.title }} {{ presentation.slot.day }}, {{ presentation.slot.start }} – {{ presentation.slot.end }}
{% endif %}
{% endif %} {% if show_financial_aid_section %}

Financial Aid

{% if show_finaid_apply_button %} Apply for financial aid {% endif %} {% if show_finaid_edit_button %} Edit financial aid application {% endif %} {% if show_finaid_status_button %} Financial aid application status {% endif %} {% if show_finaid_review_button %} Review applications {% endif %} {% if show_finaid_download_button %} Download applications {% endif %} {% if show_finaid_receipt_form %} Upload Receipt {% endif %}
{% endif %}

{% trans "Sponsorship" %}

{% trans "Learn about sponsorship" %} {% if not user.sponsorships.exists %} {% trans "Apply to be a sponsor" %} {% endif %} {% if user.is_staff %} Download sponsor logos {% endif %}
{% if user.sponsorships.exists %}

{% trans "Your Sponsorship" %}

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

{% trans "Reviews" %}

{% user_reviews as user_reviews %}

{% trans "Review Sections" %}

    {% for section in review_sections %}
  • {{ section }}
  • {% endfor %}

{% trans "Proposals you have reviewed" %}

{% for review in user_reviews %} {% endfor %}
# {% trans "Speaker / Title" %} {% trans "Your Vote" %}
{{ review.proposal.number }} {{ review.proposal.speaker }}
{{ review.proposal.title }}
{{ review.vote }}
{% 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 %}

{% trans "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 }} {% trans "applicant" %}{{ membership.team.applicants.count|pluralize }}{% endif %} {% endif %}
{% endif %} {% if available_teams %}

{% trans "Available Teams" %}

{% for team in available_teams %} {% endfor %}
{{ team }} {% if team.description %}
{{ team.description }}{% endif %}
{{ team.get_access_display }}
{% endif %}
{% endif %} {% if request.user.is_staff %}

{% trans "Program Export" %}

Export Program Data

This action may take up to a minute to complete.

{% endif %}
{% endblock %}