2019-07-24 21:03:50 +10:00
|
|
|
{% extends "site_base.html" %}
|
2016-06-27 10:14:59 +10:00
|
|
|
{% load staticfiles %}
|
2015-10-16 12:53:02 -05:00
|
|
|
{% load i18n %}
|
|
|
|
{% load proposal_tags %}
|
|
|
|
{% load review_tags %}
|
|
|
|
{% load teams_tags %}
|
2016-09-30 03:46:05 -07:00
|
|
|
{% load registrasion_tags %}
|
2017-09-27 23:46:13 +10:00
|
|
|
{% load lca2018_tags %}
|
2017-03-02 21:06:28 +11:00
|
|
|
{% load staticfiles %}
|
2015-10-16 12:53:02 -05:00
|
|
|
|
2016-06-27 10:14:59 +10:00
|
|
|
|
2018-07-01 22:25:56 +12:00
|
|
|
{% block head_title %}Dashboard{% endblock %}
|
2019-07-24 21:03:50 +10:00
|
|
|
{% block page_title %}User Dashboard{% endblock %}
|
2016-06-27 13:26:26 +10:00
|
|
|
|
2018-10-10 20:47:12 +13:00
|
|
|
{% block alert %}
|
|
|
|
{% endblock %}
|
|
|
|
|
2017-03-02 21:06:28 +11:00
|
|
|
{% block content %}
|
2016-06-28 07:56:27 +10:00
|
|
|
|
2018-06-24 12:14:29 +12:00
|
|
|
{% available_categories as categories %}
|
2018-10-10 20:47:12 +13:00
|
|
|
{% if categories %}
|
2018-06-30 10:56:52 +12:00
|
|
|
{% include "symposion/dashboard/_categories.html" %}
|
2018-06-24 12:14:29 +12:00
|
|
|
{% endif %}
|
2018-10-10 20:47:12 +13:00
|
|
|
|
2019-07-24 21:03:50 +10:00
|
|
|
<div class="mb-5">
|
2018-06-30 10:56:52 +12:00
|
|
|
{% include "symposion/dashboard/speaking.html" %}
|
2018-06-24 12:14:29 +12:00
|
|
|
</div>
|
2016-06-28 07:56:27 +10:00
|
|
|
|
2018-06-24 12:14:29 +12:00
|
|
|
{% if user.speaker_profile %}
|
|
|
|
{% if user.speaker_profile.proposals.exists %}
|
2019-07-24 21:03:50 +10:00
|
|
|
<div class="mb-5">
|
2018-06-30 10:56:52 +12:00
|
|
|
<div class="row">
|
|
|
|
<div class="col-12">
|
2019-06-24 21:58:21 +10:00
|
|
|
<h2 class="my-5">Your Proposals</h2>
|
2018-06-30 10:56:52 +12:00
|
|
|
</div>
|
2018-06-24 12:14:29 +12:00
|
|
|
</div>
|
2018-06-30 10:56:52 +12:00
|
|
|
<div class="row">
|
|
|
|
<div class="col-12">
|
|
|
|
<div class="card-deck">
|
2018-06-30 15:50:53 +12:00
|
|
|
{% for proposal in user.speaker_profile.proposals.all %}
|
2019-06-24 21:58:21 +10:00
|
|
|
{% include "symposion/proposals/_proposal_row.html" %}
|
2018-06-30 15:50:53 +12:00
|
|
|
{% endfor %}
|
2018-06-30 10:56:52 +12:00
|
|
|
</div>
|
|
|
|
</div>
|
2018-06-24 12:14:29 +12:00
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
{% endif %}
|
|
|
|
{% endif %}
|
2017-04-25 15:59:35 +10:00
|
|
|
|
2018-06-24 12:14:29 +12:00
|
|
|
{% if user.speaker_profile %}
|
|
|
|
{% associated_proposals as associated_proposals %}
|
|
|
|
{% pending_proposals as pending_proposals %}
|
|
|
|
{% if associated_proposals or pending_proposals %}
|
2019-07-24 21:03:50 +10:00
|
|
|
<div class="mb-5">
|
2018-06-30 15:50:53 +12:00
|
|
|
<div class="row">
|
|
|
|
<div class="col-12">
|
2019-06-24 21:58:21 +10:00
|
|
|
<h2 class="my-5">Copresenter Proposals</h2>
|
2018-06-30 15:50:53 +12:00
|
|
|
</div>
|
2018-06-24 12:14:29 +12:00
|
|
|
</div>
|
2018-06-30 15:50:53 +12:00
|
|
|
<div class="row">
|
2018-06-24 12:14:29 +12:00
|
|
|
{% for proposal in associated_proposals %}
|
|
|
|
{% include "symposion/proposals/_proposal_row.html" %}
|
|
|
|
{% endfor %}
|
|
|
|
{% for proposal in pending_proposals %}
|
|
|
|
{% include "symposion/proposals/_pending_proposal_row.html" %}
|
|
|
|
{% endfor %}
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
{% endif %}
|
|
|
|
{% endif %}
|
2017-04-25 15:59:35 +10:00
|
|
|
|
2018-06-24 13:21:52 +12:00
|
|
|
{% if review_sections %}
|
2019-07-24 21:03:50 +10:00
|
|
|
<div class="mb-5">
|
|
|
|
<div class="row">
|
|
|
|
<h2 class="col-12 my-5">{% trans "Reviews" %}</h2>
|
|
|
|
</div>
|
|
|
|
<div class="row">
|
|
|
|
{% for section in review_sections %}
|
|
|
|
<div class="col-6">
|
|
|
|
<div class="card card-default mb-3">
|
|
|
|
<div class="card-header">
|
|
|
|
<h3 class="card-title">{{ section }}</h3>
|
|
|
|
</div>
|
|
|
|
<div class="card-body">
|
|
|
|
<ul class="list-unstyled">
|
2019-10-14 21:26:49 +10:00
|
|
|
<li><a href="{% url "review_section" section.section.slug %}">All Reviews</a></li>
|
|
|
|
{% comment %}
|
|
|
|
<li><a href="{% url "review_section_assignments" section.section.slug %}">Your Assignments</a></li>
|
|
|
|
{% endcomment %}
|
2018-06-24 12:14:29 +12:00
|
|
|
<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>
|
2019-10-14 21:26:49 +10:00
|
|
|
<li><a href="{% url "user_random" section.section.slug %}">Random unreviewed proposal</a></li>
|
2018-06-24 12:14:29 +12:00
|
|
|
</ul>
|
2019-10-14 21:26:49 +10:00
|
|
|
|
2018-06-24 12:14:29 +12:00
|
|
|
<ul class="list-unstyled">
|
|
|
|
<li><a href="{% url "review_status" section.section.slug %}">Voting Status</a></li>
|
2019-10-14 21:26:49 +10:00
|
|
|
{% if section in manage_sections %}
|
|
|
|
<li><a href="{% url "review_bulk_update" section.section.slug %}">Bulk Update</a></li>
|
|
|
|
<li><a href="{% url "result_notification" section.section.slug "accepted" %}">Result notifications</a></li>
|
2018-06-24 12:14:29 +12:00
|
|
|
<li><a href="{% url "review_admin" section.section.slug %}">Reviewer Stats</a></li>
|
2019-10-14 21:26:49 +10:00
|
|
|
{% endif %}
|
2018-06-24 12:14:29 +12:00
|
|
|
</ul>
|
2019-07-24 21:03:50 +10:00
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
{% endfor %}
|
2018-06-24 12:14:29 +12:00
|
|
|
</div>
|
|
|
|
</div>
|
2019-07-24 21:03:50 +10:00
|
|
|
{% endif %}
|
2018-06-30 16:42:03 +12:00
|
|
|
|
2018-06-24 12:14:29 +12:00
|
|
|
{% available_teams as available_teams %}
|
|
|
|
{% if user.memberships.exists or available_teams %}
|
2019-07-24 21:03:50 +10:00
|
|
|
<div class="mb-5">
|
2018-06-30 16:42:03 +12:00
|
|
|
<div class="row">
|
|
|
|
<h2 class="col-12 my-5">{% trans "Teams "%}</h2>
|
2019-07-24 21:03:50 +10:00
|
|
|
</div>
|
|
|
|
{% if user.memberships.exists %}
|
2018-06-30 16:42:03 +12:00
|
|
|
<div class="row">
|
2019-09-29 20:15:34 +10:00
|
|
|
<h3 class="col-12">Your Teams</h3>
|
|
|
|
</div>
|
|
|
|
<div class="row">
|
|
|
|
{% for membership in user.memberships.all %}
|
|
|
|
<div class="col-6">
|
|
|
|
{% include "symposion/teams/_team_row.html" with team=membership.team %}
|
2018-06-30 16:42:03 +12:00
|
|
|
</div>
|
2019-09-29 20:15:34 +10:00
|
|
|
{% endfor %}
|
2018-06-30 16:42:03 +12:00
|
|
|
</div>
|
2019-07-24 21:03:50 +10:00
|
|
|
{% endif %}
|
|
|
|
{% if available_teams %}
|
2018-06-30 14:58:39 +12:00
|
|
|
<div class="row">
|
2019-09-29 20:15:34 +10:00
|
|
|
<h3 class="col-12">Available Teams</h3>
|
|
|
|
</div>
|
|
|
|
<div class="row">
|
|
|
|
{% for team in available_teams %}
|
|
|
|
<div class="col-6">
|
|
|
|
{% include "symposion/teams/_team_row.html" %}
|
2017-04-16 16:01:57 +10:00
|
|
|
</div>
|
2019-09-29 20:15:34 +10:00
|
|
|
{% endfor %}
|
2018-06-24 12:14:29 +12:00
|
|
|
</div>
|
2019-07-24 21:03:50 +10:00
|
|
|
{% endif %}
|
2018-06-24 12:14:29 +12:00
|
|
|
</div>
|
|
|
|
{% endif %}
|
2016-06-27 13:26:26 +10:00
|
|
|
|
2017-03-02 21:06:28 +11:00
|
|
|
{% endblock %} <!-- block content -->
|
2016-09-30 03:46:05 -07:00
|
|
|
|
|
|
|
{% block scripts_extra %}
|
2018-06-24 12:14:29 +12:00
|
|
|
<script type="text/javascript">
|
|
|
|
var _toggleVoidInvoices = function() {
|
|
|
|
var visible = false;
|
|
|
|
function toggleVoidInvoices() {
|
|
|
|
$btn = $("#toggle-void-invoices");
|
|
|
|
$invoices = $(".void-invoice")
|
2018-10-10 20:47:12 +13:00
|
|
|
|
2018-06-24 12:14:29 +12:00
|
|
|
if (visible) {
|
|
|
|
$invoices.hide();
|
|
|
|
btnText = "Show void invoices";
|
|
|
|
} else {
|
|
|
|
$invoices.show();
|
|
|
|
btnText = "Hide void invoices";
|
2016-09-30 03:46:05 -07:00
|
|
|
}
|
2018-06-24 12:14:29 +12:00
|
|
|
$btn.text(btnText);
|
|
|
|
visible = !visible;
|
|
|
|
return true;
|
2016-09-30 03:46:05 -07:00
|
|
|
}
|
2018-06-24 12:14:29 +12:00
|
|
|
return toggleVoidInvoices;
|
|
|
|
}
|
|
|
|
var toggleVoidInvoices = _toggleVoidInvoices();
|
|
|
|
_toggleVoidInvoices = undefined;
|
|
|
|
</script>
|
2017-04-25 15:59:35 +10:00
|
|
|
{% endblock %}
|