symposion_app/pinaxcon/templates/dashboard.html

170 lines
4.6 KiB
HTML
Raw Normal View History

{% extends "utility_page.html" %}
{% load staticfiles %}
{% load i18n %}
{% load proposal_tags %}
{% load review_tags %}
{% load teams_tags %}
Adds registration to the website (#69) * Updates settings and requirements * First pass at attendee profile * Imports the registration templates; defines attendee profile models etc. * First pass at themeing the registration form. * First page of the registration form: done! * Makes form validation nicer * Adds populate_inventory * Improves the additional items page * Allows for rendering of formsets. * Adds support for formset extending. * Removes formset delete buttons * Review page is LCA-ified * Fixes some formset behaviour * Fixes urls.py * LCA-ifies product_category.html * Invoices * Credit card payments * s/register/tickets/ * Show registration features only whilst products are available (think about this better, later) * Updates the attendee profile form page * Form tidy-up * Makes it so that address info is copied from attendee profile to the address details are autofilled in Stripe. * Adds feature to offer Australians a dropdown list of states rather than free text. * Allow toggling of void invoices. * Adds backgrounds to the headers in the registration process * Improves the review page * Adds “Linux Australia” to invoice details. * Do not show balance due on void/refunded invoices. * More thumbing * Adds a link back to reports on each report. * Tokenisation language. * Another bug in credit card processing. * Adds stripe refunds to options * Removes spurious dashboard button. * Tidies up the presentation of discounts. * Tidies up presentation of voucher form. * Fixes sponsor logo appearance with adblock. * Front page tweaks * Lets us specify alternative URLs in homepage panels * more * Updates discount amounts. * More website fixes * Changes language on pay invoice button * Adds contact details to the invoice template. * Updates the currency message in the invoice template. * Explicitly includes e-mail address, because theme_contact_email doesn’t propagate * Changes payment text. * s/registration/selections/ * Removes final face palm * Fixes lack of speaker dinner tickets for actual presenters. * Adjusts wording in invoice e-mails * Invoice wording. * (FIX) * Fixes margins on lists and tables * Improvements arising from those CSS fixes. * Changes description tags.
2016-09-30 10:46:05 +00:00
{% load registrasion_tags %}
{% load lca2018_tags %}
{% load staticfiles %}
2018-07-01 10:25:56 +00:00
{% block head_title %}Dashboard{% endblock %}
2018-06-04 08:54:51 +00:00
{% block header_lead %}User Dashboard{% endblock %}
2018-06-24 00:14:29 +00:00
{% block main_class %}{% endblock %}
{% block content %}
2018-06-24 00:14:29 +00:00
{% available_categories as categories %}
2018-06-29 22:56:52 +00:00
<div class="container mb-5">
<h1 class="text-primary">Dashboard</h1>
2018-06-24 00:14:29 +00:00
</div>
2018-06-29 22:56:52 +00:00
{% if categories %}
{% include "symposion/dashboard/_categories.html" %}
2018-06-24 00:14:29 +00:00
{% endif %}
2018-06-04 08:54:51 +00:00
2018-06-29 22:56:52 +00:00
<div class="container mb-5">
{% include "symposion/dashboard/speaking.html" %}
2018-06-24 00:14:29 +00:00
</div>
2018-06-24 00:14:29 +00:00
{% if user.speaker_profile %}
{% if user.speaker_profile.proposals.exists %}
2018-06-29 22:56:52 +00:00
<div class="container mb-5">
<div class="row">
<div class="col-12">
<h2 class="text-primary my-5">Your Proposals</h2>
</div>
2018-06-24 00:14:29 +00:00
</div>
2018-06-29 22:56:52 +00:00
<div class="row">
<div class="col-12">
<div class="card-deck">
2018-06-30 03:50:53 +00:00
{% for proposal in user.speaker_profile.proposals.all %}
{% include "symposion/proposals/_proposal_row.html" %}
{% endfor %}
2018-06-29 22:56:52 +00:00
</div>
</div>
2018-06-24 00:14:29 +00:00
</div>
</div>
{% endif %}
{% endif %}
2017-04-25 05:59:35 +00:00
2018-06-24 00:14:29 +00:00
{% if user.speaker_profile %}
{% associated_proposals as associated_proposals %}
{% pending_proposals as pending_proposals %}
{% if associated_proposals or pending_proposals %}
2018-06-29 22:56:52 +00:00
<div class="container mb-5">
2018-06-30 03:50:53 +00:00
<div class="row">
<div class="col-12">
<h2 class="text-primary my-5">Copresenter Proposals</h2>
</div>
2018-06-24 00:14:29 +00:00
</div>
2018-06-30 03:50:53 +00:00
<div class="row">
2018-06-24 00:14:29 +00: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 05:59:35 +00:00
{% if review_sections %}
2018-06-29 22:56:52 +00:00
<div class="container text-primary mb-5">
2018-06-24 00:14:29 +00:00
<div class="row">
<h2 class="col-12 my-5">{% trans "Reviews" %}</h2>
{% for section in review_sections %}
<div class="col-md-6">
<h3>{{ section }}</h3>
<ul class="list-unstyled">
<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>
</ul>
{% if section in manage_sections %}
<ul class="list-unstyled">
<li><a href="{% url "review_bulk_update" section.section.slug %}">Bulk Update</a></li>
<li><a href="{% url "result_notification" section.section.slug "accepted" %}">Send notifications</a></li>
<li><a href="{% url "review_status" section.section.slug %}">Voting Status</a></li>
<li><a href="{% url "review_admin" section.section.slug %}">Reviewer Stats</a></li>
</ul>
{% endif %}
</div>
{% endfor %}
{% endif %}
</div>
</div>
2018-06-30 04:42:03 +00:00
2018-06-24 00:14:29 +00:00
{% available_teams as available_teams %}
{% if user.memberships.exists or available_teams %}
2018-06-30 04:42:03 +00:00
<div class="container text-primary mb-5">
<div class="row">
<h2 class="col-12 my-5">{% trans "Teams "%}</h2>
2018-06-24 00:14:29 +00:00
{% if user.memberships.exists %}
2018-06-30 04:42:03 +00:00
</div>
<div class="row">
<div class="col-12">
<h3 class="text-primary">Your Teams</h3>
<div class="card-deck">
{% for membership in user.memberships.all %}
{% include "symposion/teams/_team_row.html" with team=membership.team %}
2018-06-30 04:42:03 +00:00
{% endfor %}
</div>
</div>
2018-06-24 00:14:29 +00:00
{% endif %}
2018-06-30 04:42:03 +00:00
</div>
2018-06-24 00:14:29 +00:00
</div>
2018-06-30 04:42:03 +00:00
2018-06-24 00:14:29 +00:00
<div class="container">
<div class="row">
2018-06-24 00:14:29 +00:00
{% if available_teams %}
<div class="col-12">
<h3 class="text-primary my-5">Available Teams</h3>
2018-06-24 00:14:29 +00:00
</div>
<div class="col-12">
<div class="card-deck">
{% for team in available_teams %}
{% include "symposion/teams/_team_row.html" %}
{% endfor %}
</div>
</div>
</div>
{% endif %}
2018-06-24 00:14:29 +00:00
</div>
</div>
{% endif %}
{% endblock %} <!-- block content -->
Adds registration to the website (#69) * Updates settings and requirements * First pass at attendee profile * Imports the registration templates; defines attendee profile models etc. * First pass at themeing the registration form. * First page of the registration form: done! * Makes form validation nicer * Adds populate_inventory * Improves the additional items page * Allows for rendering of formsets. * Adds support for formset extending. * Removes formset delete buttons * Review page is LCA-ified * Fixes some formset behaviour * Fixes urls.py * LCA-ifies product_category.html * Invoices * Credit card payments * s/register/tickets/ * Show registration features only whilst products are available (think about this better, later) * Updates the attendee profile form page * Form tidy-up * Makes it so that address info is copied from attendee profile to the address details are autofilled in Stripe. * Adds feature to offer Australians a dropdown list of states rather than free text. * Allow toggling of void invoices. * Adds backgrounds to the headers in the registration process * Improves the review page * Adds “Linux Australia” to invoice details. * Do not show balance due on void/refunded invoices. * More thumbing * Adds a link back to reports on each report. * Tokenisation language. * Another bug in credit card processing. * Adds stripe refunds to options * Removes spurious dashboard button. * Tidies up the presentation of discounts. * Tidies up presentation of voucher form. * Fixes sponsor logo appearance with adblock. * Front page tweaks * Lets us specify alternative URLs in homepage panels * more * Updates discount amounts. * More website fixes * Changes language on pay invoice button * Adds contact details to the invoice template. * Updates the currency message in the invoice template. * Explicitly includes e-mail address, because theme_contact_email doesn’t propagate * Changes payment text. * s/registration/selections/ * Removes final face palm * Fixes lack of speaker dinner tickets for actual presenters. * Adjusts wording in invoice e-mails * Invoice wording. * (FIX) * Fixes margins on lists and tables * Improvements arising from those CSS fixes. * Changes description tags.
2016-09-30 10:46:05 +00:00
{% block scripts_extra %}
2018-06-24 00:14:29 +00:00
<script type="text/javascript">
var _toggleVoidInvoices = function() {
var visible = false;
function toggleVoidInvoices() {
$btn = $("#toggle-void-invoices");
$invoices = $(".void-invoice")
if (visible) {
$invoices.hide();
btnText = "Show void invoices";
} else {
$invoices.show();
btnText = "Hide void invoices";
Adds registration to the website (#69) * Updates settings and requirements * First pass at attendee profile * Imports the registration templates; defines attendee profile models etc. * First pass at themeing the registration form. * First page of the registration form: done! * Makes form validation nicer * Adds populate_inventory * Improves the additional items page * Allows for rendering of formsets. * Adds support for formset extending. * Removes formset delete buttons * Review page is LCA-ified * Fixes some formset behaviour * Fixes urls.py * LCA-ifies product_category.html * Invoices * Credit card payments * s/register/tickets/ * Show registration features only whilst products are available (think about this better, later) * Updates the attendee profile form page * Form tidy-up * Makes it so that address info is copied from attendee profile to the address details are autofilled in Stripe. * Adds feature to offer Australians a dropdown list of states rather than free text. * Allow toggling of void invoices. * Adds backgrounds to the headers in the registration process * Improves the review page * Adds “Linux Australia” to invoice details. * Do not show balance due on void/refunded invoices. * More thumbing * Adds a link back to reports on each report. * Tokenisation language. * Another bug in credit card processing. * Adds stripe refunds to options * Removes spurious dashboard button. * Tidies up the presentation of discounts. * Tidies up presentation of voucher form. * Fixes sponsor logo appearance with adblock. * Front page tweaks * Lets us specify alternative URLs in homepage panels * more * Updates discount amounts. * More website fixes * Changes language on pay invoice button * Adds contact details to the invoice template. * Updates the currency message in the invoice template. * Explicitly includes e-mail address, because theme_contact_email doesn’t propagate * Changes payment text. * s/registration/selections/ * Removes final face palm * Fixes lack of speaker dinner tickets for actual presenters. * Adjusts wording in invoice e-mails * Invoice wording. * (FIX) * Fixes margins on lists and tables * Improvements arising from those CSS fixes. * Changes description tags.
2016-09-30 10:46:05 +00:00
}
2018-06-24 00:14:29 +00:00
$btn.text(btnText);
visible = !visible;
return true;
Adds registration to the website (#69) * Updates settings and requirements * First pass at attendee profile * Imports the registration templates; defines attendee profile models etc. * First pass at themeing the registration form. * First page of the registration form: done! * Makes form validation nicer * Adds populate_inventory * Improves the additional items page * Allows for rendering of formsets. * Adds support for formset extending. * Removes formset delete buttons * Review page is LCA-ified * Fixes some formset behaviour * Fixes urls.py * LCA-ifies product_category.html * Invoices * Credit card payments * s/register/tickets/ * Show registration features only whilst products are available (think about this better, later) * Updates the attendee profile form page * Form tidy-up * Makes it so that address info is copied from attendee profile to the address details are autofilled in Stripe. * Adds feature to offer Australians a dropdown list of states rather than free text. * Allow toggling of void invoices. * Adds backgrounds to the headers in the registration process * Improves the review page * Adds “Linux Australia” to invoice details. * Do not show balance due on void/refunded invoices. * More thumbing * Adds a link back to reports on each report. * Tokenisation language. * Another bug in credit card processing. * Adds stripe refunds to options * Removes spurious dashboard button. * Tidies up the presentation of discounts. * Tidies up presentation of voucher form. * Fixes sponsor logo appearance with adblock. * Front page tweaks * Lets us specify alternative URLs in homepage panels * more * Updates discount amounts. * More website fixes * Changes language on pay invoice button * Adds contact details to the invoice template. * Updates the currency message in the invoice template. * Explicitly includes e-mail address, because theme_contact_email doesn’t propagate * Changes payment text. * s/registration/selections/ * Removes final face palm * Fixes lack of speaker dinner tickets for actual presenters. * Adjusts wording in invoice e-mails * Invoice wording. * (FIX) * Fixes margins on lists and tables * Improvements arising from those CSS fixes. * Changes description tags.
2016-09-30 10:46:05 +00:00
}
2018-06-24 00:14:29 +00:00
return toggleVoidInvoices;
}
var toggleVoidInvoices = _toggleVoidInvoices();
_toggleVoidInvoices = undefined;
</script>
2017-04-25 05:59:35 +00:00
{% endblock %}