{% extends "utility_page.html" %} {% load staticfiles %} {% load i18n %} {% load proposal_tags %} {% load review_tags %} {% load teams_tags %} {% load registrasion_tags %} {% load pyconau2017_tags %} {% load staticfiles %} {% block head_title %}Dashboard{% endblock %} {% block content %}

DASHBOARD

{% available_categories as categories %} {% if categories %}

{% trans "Attend" %} {% conference_name %}

{% if not user.attendee.completed_registration %} Get your ticket {% else %} Edit attendee profile {% items_pending as pending %} {% if pending %} Check out and pay {% endif %} {% endif %} {% if user.is_staff %} Reports {% endif %}
{% 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 items

{% items_pending as pending %} {% if pending %}

Items pending payment

{% include "registrasion/_items_list.html" with items=pending %}

Check out and pay for these items.

{% endif %} {% items_purchased as purchased %} {% if purchased %}

Paid items

{% include "registrasion/_items_list.html" with items=purchased %} {% endif %}

Add/Update items

{% include "registrasion/_category_list.html" with categories=categories %} {% invoices as invoices %} {% if invoices %}

Invoices

{% endif %} {% available_credit as credit %} {% if credit %}

You have ${{ credit }} leftover from refunded invoices. This credit will be automatically applied to new invoices. Contact the conference organisers to for a refund to your original payment source.

{% endif %}

{% endif %}
{% endif %}

{% trans "Speaking and Miniconfs" %}


{% if not user.speaker_profile %} Create profile {% else %} Edit profile New proposal {% endif %}
{% 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.

{% else %}

{% endif %} {% endif %} {% if user.speaker_profile.proposals.exists %} {% for proposal in user.speaker_profile.proposals.all %} {% include "symposion/proposals/_proposal_row.html" %} {% endfor %} {% 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 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 Type Status Actions
{% endif %} {% endif %}
{# {% include 'registrasion/dashboard-widget.html' %} #} {% if review_sections %}

{% trans "Reviews" %}

{% for section in review_sections %}

{{ section }}

{% endfor %}
{% 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 %} {% block scripts_extra %} {% endblock %}