{% extends 'wafer/base.html' %} {% load i18n %} {% load sponsors %} {% load static from staticfiles %} {% block container_class %}index{% endblock %} {% block content %} {% if debconf_soon or debconf_day %}
{% if debconf_day %}

{% blocktrans trimmed %}{{ WAFER_CONFERENCE_NAME }} is underway!{% endblocktrans %}

{% elif debconf_soon %} {% blocktrans trimmed %}{{ WAFER_CONFERENCE_NAME }} starts soon!{% endblocktrans %} {% endif %}

{% trans 'Video streams' %}

{% for blk in venue_blocks %}

{{ blk.venue.name }}

{% if blk.event.talk and blk.event.talk.video %}
From {{ blk.start_time }} to {{ blk.end_time }}

{% include "wafer.schedule/schedule_item.html" with item=blk.event %}

{% else %}

{% trans 'No event streaming currently.' %}

{% endif %}
{% endfor %}
{% endif %}
{% if user.is_authenticated %}

Profile

{% blocktrans trimmed %} Manage your registration, public bio, event submissions, and other conference-related information. {% endblocktrans %}

{% endif %}
{% if page %} {{ page.cached_render|safe }} {% if perms.pages.change_page %}
{% trans 'Edit' %}
{% endif %} {% else %} {% if perms.pages.change_page %}
{% trans 'Create homepage' %}
{% endif %} {% endif %}
{% endblock %}