{% extends 'wafer/base.html' %}
{% load countries %}
{% block content %}
Content
Submitted |
Reviewed |
Scheduled |
Hours Scheduled |
{{ talks_submitted }} |
{{ talks_reviewed }} |
{{ talks_scheduled }} |
{{ hours_of_content }} |
Concurrent Events |
Hours of schedule at this level |
{% for concurrency, hours in hours_of_concurrency %}
{{ concurrency }} |
{{ hours }} |
{% endfor %}
Track |
Submitted Events |
Scheduled Events |
{% for name, stats in talks_by_track.items %}
{{ name }} |
{{ stats.submitted }} |
{{ stats.scheduled }} |
{% endfor %}
Types |
Submitted Events |
Scheduled Events |
{% for name, stats in talks_by_type.items %}
{{ name }} |
{{ stats.submitted }} |
{{ stats.scheduled }} |
{% endfor %}
Country |
Speakers |
{% for country, count in speakers_by_country %}
{{ country }} |
{{ count }} |
{% endfor %}
{% endblock content %}