2016-06-27 03:26:26 +00:00
|
|
|
{% extends "site_base_wagtail.html" %}
|
2016-06-27 00:14:59 +00:00
|
|
|
{% load staticfiles %}
|
2015-10-16 17:53:02 +00:00
|
|
|
{% load i18n %}
|
|
|
|
{% load proposal_tags %}
|
|
|
|
{% load review_tags %}
|
|
|
|
{% load teams_tags %}
|
2016-06-18 03:00:56 +00:00
|
|
|
{# {% load registrasion_tags %} #}
|
2015-10-16 17:53:02 +00:00
|
|
|
|
|
|
|
{% block head_title %}Dashboard{% endblock %}
|
|
|
|
|
2016-06-27 00:14:59 +00:00
|
|
|
{% block extra_style %}
|
2016-06-27 03:26:26 +00:00
|
|
|
|
2016-06-27 00:14:59 +00:00
|
|
|
{% endblock %}
|
|
|
|
|
2015-10-16 17:53:02 +00:00
|
|
|
{% block body_class %}auth{% endblock %}
|
|
|
|
|
|
|
|
{% block body %}
|
2016-06-27 03:26:26 +00:00
|
|
|
|
2016-06-27 21:56:27 +00:00
|
|
|
{% load staticfiles %}
|
|
|
|
{% load wagtailimages_tags %}
|
|
|
|
|
|
|
|
<div class="panel panel__compact panel__bg">
|
|
|
|
<div style="background-image: url('{% static "lca2017/images/hobart_bg_optimised.jpg" %}');" class="panel--bg"></div>
|
|
|
|
<div class="panel--content">
|
|
|
|
<div class="panel--2-3">
|
|
|
|
<h2>{% trans "Speaking and Miniconfs" %}</h2>
|
|
|
|
<br />
|
|
|
|
<div class="btn-group">
|
|
|
|
{% if not user.speaker_profile %}
|
|
|
|
<a href="{% url "speaker_create" %}" class="btn btn__white">
|
|
|
|
Create profile
|
|
|
|
</a>
|
|
|
|
{% else %}
|
|
|
|
<a href="{% url "speaker_edit" %}" class="btn btn__white">
|
|
|
|
Edit profile
|
|
|
|
</a>
|
|
|
|
<a href="{% url "proposal_submit" %}" class="btn btn__white">
|
|
|
|
New proposal
|
|
|
|
</a>
|
|
|
|
{% endif %}
|
|
|
|
</div>
|
|
|
|
<br />
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
2016-06-27 03:26:26 +00:00
|
|
|
|
|
|
|
<div class="l-content-page">
|
|
|
|
<div class="l-content-page--richtext">
|
|
|
|
|
|
|
|
{% if not user.speaker_profile %}
|
|
|
|
<p>To submit a proposal, you must first create a speaker profile.</p>
|
|
|
|
{% else %}
|
|
|
|
<h3>Your Proposals</h3>
|
|
|
|
|
|
|
|
{% if not user.speaker_profile.proposals.exists %}
|
|
|
|
<p>No proposals submitted yet.</p>
|
|
|
|
{% else %}
|
|
|
|
<p></p>
|
|
|
|
{% 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 %}
|
|
|
|
<h3>Proposals you have joined as an additional speaker</h3>
|
|
|
|
<table>
|
2015-10-16 17:53:02 +00:00
|
|
|
<tr>
|
|
|
|
<th>Title</th>
|
2016-06-27 03:26:26 +00:00
|
|
|
<th>Type</th>
|
2015-10-16 17:53:02 +00:00
|
|
|
<th>Status</th>
|
|
|
|
<th>Actions</th>
|
|
|
|
</tr>
|
2016-06-27 03:26:26 +00:00
|
|
|
{% for proposal in associated_proposals %}
|
2015-10-16 17:53:02 +00:00
|
|
|
{% include "symposion/proposals/_proposal_row.html" %}
|
|
|
|
{% endfor %}
|
|
|
|
</table>
|
2016-06-27 03:26:26 +00:00
|
|
|
{% endif %}
|
|
|
|
|
|
|
|
{% pending_proposals as pending_proposals %}
|
|
|
|
{% if pending_proposals %}
|
|
|
|
<h3>Proposals you have been invited to join</h3>
|
|
|
|
<table>
|
|
|
|
<tr>
|
|
|
|
<th>Title</th>
|
|
|
|
<th>Type</th>
|
|
|
|
<th>Status</th>
|
|
|
|
<th>Actions</th>
|
|
|
|
</tr>
|
|
|
|
{% for proposal in pending_proposals %}
|
|
|
|
{% include "symposion/proposals/_pending_proposal_row.html" %}
|
|
|
|
{% endfor %}
|
|
|
|
</table>
|
|
|
|
{% endif %}
|
|
|
|
{% endif %}
|
2015-10-16 17:53:02 +00:00
|
|
|
|
2016-06-27 21:56:27 +00:00
|
|
|
<br />
|
2016-06-27 03:26:26 +00:00
|
|
|
|
2016-06-27 21:56:27 +00:00
|
|
|
</div>
|
|
|
|
</div>
|
2016-06-27 03:26:26 +00:00
|
|
|
|
2016-06-27 21:56:27 +00:00
|
|
|
{# {% include 'registrasion/dashboard-widget.html' %} #}
|
2016-06-27 03:26:26 +00:00
|
|
|
|
2016-06-27 21:56:27 +00:00
|
|
|
{% if review_sections %}
|
2015-10-16 17:53:02 +00:00
|
|
|
|
2016-06-27 21:56:27 +00:00
|
|
|
<div class="panel panel__compact panel__bg">
|
|
|
|
<div style="background-image: url('{% static "lca2017/images/conference_bg_optimised.jpg" %}');" class="panel--bg"></div>
|
|
|
|
<div class="panel--content">
|
|
|
|
<div class="panel--2-3">
|
|
|
|
<h2>{% trans "Reviews" %}</h2>
|
|
|
|
<br />
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
2016-06-27 03:26:26 +00:00
|
|
|
|
2016-06-27 21:56:27 +00:00
|
|
|
<div class="l-content-page">
|
|
|
|
<div class="l-content-page--richtext">
|
|
|
|
{% for section in review_sections %}
|
|
|
|
<h3>{{ section }}</h3>
|
|
|
|
<ul>
|
2016-06-27 03:26:26 +00:00
|
|
|
<li><a href="{% url "review_section" section.section.slug %}">All</a></li>
|
|
|
|
<li><a href="{% url "user_reviewed" section.section.slug %}">Reviewed by you</a></li>
|
|
|
|
<li><a href="{% url "user_not_reviewed" section.section.slug %}">Not Reviewed by you</a></li>
|
2016-06-27 21:56:27 +00:00
|
|
|
</ul>
|
|
|
|
{% endfor %}
|
|
|
|
|
|
|
|
<br />
|
|
|
|
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
{% endif %}
|
|
|
|
|
|
|
|
|
|
|
|
{% available_teams as available_teams %}
|
|
|
|
{% if user.memberships.exists or available_teams %}
|
|
|
|
<div class="panel panel__compact panel__bg">
|
2016-06-29 13:17:15 +00:00
|
|
|
<div style="background-image: url('{% static "lca2017/images/hobart_bg_optimised.jpg" %}');" class="panel--bg"></div>
|
2016-06-27 21:56:27 +00:00
|
|
|
<div class="panel--content">
|
|
|
|
<div class="panel--2-3">
|
|
|
|
<h2>{% trans "Teams" %}</h2>
|
|
|
|
<br />
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
|
|
|
|
|
|
|
|
{% if user.memberships.exists %}
|
|
|
|
<div class="l-content-page">
|
|
|
|
<div class="l-content-page--richtext">
|
|
|
|
<h3>Your Teams</h3>
|
2016-06-27 03:26:26 +00:00
|
|
|
<table>
|
|
|
|
{% for membership in user.memberships.all %}
|
|
|
|
<tr>
|
|
|
|
<td>
|
|
|
|
<a href="{% url "team_detail" membership.team.slug %}">{{ membership.team.name }}</a>
|
|
|
|
{% if membership.team.description %}<br>{{ membership.team.description }}{% endif %}
|
|
|
|
</td>
|
|
|
|
<td>
|
|
|
|
<span class="label{% if membership.state == 'invited' %} label-info{% endif %}">{{ membership.get_state_display }}</span>
|
|
|
|
</td>
|
|
|
|
<td>
|
|
|
|
{% if membership.state == "manager" or user.is_staff %}
|
|
|
|
{% if membership.team.applicants %}{{ membership.team.applicants.count }} applicant{{ membership.team.applicants.count|pluralize }}{% endif %}
|
|
|
|
{% endif %}
|
|
|
|
</td>
|
|
|
|
</tr>
|
|
|
|
{% endfor %}
|
|
|
|
</table>
|
|
|
|
{% endif %}
|
|
|
|
{% if available_teams %}
|
2016-06-27 21:56:27 +00:00
|
|
|
<h3>Available Teams</h3>
|
2016-06-27 03:26:26 +00:00
|
|
|
<table class="table table-striped">
|
|
|
|
{% for team in available_teams %}
|
|
|
|
<tr>
|
|
|
|
<td>
|
|
|
|
<a href="{% url team_detail team.slug %}">{{ team }}</a>
|
|
|
|
{% if team.description %}<br>{{ team.description }}{% endif %}
|
|
|
|
</td>
|
|
|
|
<td>
|
|
|
|
<span class="label label-default">{{ team.get_access_display }}</span>
|
|
|
|
</td>
|
|
|
|
</tr>
|
|
|
|
{% endfor %}
|
|
|
|
</table>
|
|
|
|
{% endif %}
|
2016-06-27 21:56:27 +00:00
|
|
|
</div>
|
|
|
|
</div>
|
2016-06-27 03:26:26 +00:00
|
|
|
|
2016-06-27 21:56:27 +00:00
|
|
|
{% endif %}
|
2016-06-27 03:26:26 +00:00
|
|
|
|
2015-10-16 17:53:02 +00:00
|
|
|
{% endblock %}
|