diff --git a/symposion_project/templates/dashboard.html b/symposion_project/templates/dashboard.html new file mode 100644 index 0000000000000000000000000000000000000000..1639e26097cc45a1d736e941ed3fe489dff85eec --- /dev/null +++ b/symposion_project/templates/dashboard.html @@ -0,0 +1,165 @@ +{% extends "site_base.html" %} + +{% load i18n %} +{% load proposal_tags %} + +{% block head_title %}Dashboard{% endblock %} + +{% 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 %} +
+ +
+
+

Speaking

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

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

+
+ +
+ {% endif %} +
+
+{% endblock %} \ No newline at end of file