diff --git a/symposion_project/templates/dashboard.html b/symposion_project/templates/dashboard.html index b0f53f00..7082299f 100644 --- a/symposion_project/templates/dashboard.html +++ b/symposion_project/templates/dashboard.html @@ -7,159 +7,101 @@ {% 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 %} +{% block body %} +

{% trans "Dashboard" %}

+ +
+

{% trans "Speaking" %}

+ {% if not user.speaker_profile %} +
+

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

+ + Create a speaker profile +
-
-
-

Speaking

-
-
- {% if user.speaker_profile %} - + + Submit a new proposal + -
-

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

Staff

-
- -
+

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

Your Sponsorship

+ + {% endif %} +
{% endblock %}