diff --git a/symposion_project/templates/dashboard.html b/symposion_project/templates/dashboard.html deleted file mode 100644 index 09ef825726ce8b288e5f3c79b54352df9bb09625..0000000000000000000000000000000000000000 --- a/symposion_project/templates/dashboard.html +++ /dev/null @@ -1,175 +0,0 @@ -{% extends "site_base.html" %} - -{% load i18n %} -{% load proposal_tags %} -{% load teams_tags %} - -{% block head_title %}Dashboard{% endblock %} - -{% block body_class %}auth{% endblock %} - -{% block body %} -
-
- -

{% trans "Speaking" %}

-
- {% if not user.speaker_profile %} - - Create a speaker profile - - {% else %} - - Edit your speaker profile - - - Submit a new proposal - - {% endif %} -
-
- -
- {% if not user.speaker_profile %} -

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

- {% else %} -

Your Proposals

- {% if user.speaker_profile.proposals.exists %} - - - - - - - - {% for proposal in user.speaker_profile.proposals.all %} - {% include "proposals/_proposal_row.html" %} - {% endfor %} -
TitleSession typeStatusActions
- {% 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 %} -
TitleSession typeStatusActions
- {% 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 %} -
TitleSession typeStatusActions
- {% endif %} - {% endif %} -
-
- -
-
- -

{% trans "Sponsorship" %}

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

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

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