{% extends "inc/layout.html" %} {% block title %}{{ space.title }}{% endblock %} {% block content %}
{{ space.datelocation }}
{{ description }}Status: {% if space.status == 0 -%} Draft {%- elif space.status == 1 -%} Accepting submissions {%- elif space.status == 2 -%} Accepting votes {%- elif space.status == 3 -%} Submissions and voting closed, awaiting jury selection {%- elif space.status == 4 -%} Open for post-event feedback {%- elif space.status == 5 -%} Closed {%- elif space.status == 6 -%} Rejected {%- endif -%}
{% if tracks -%}# | Title | Proposer | Speaker | Track | Type | Level | +1 | Submitted |
---|---|---|---|---|---|---|---|---|
{{ loop.index }} | {{ proposal.title }} | {{ proposal.user.fullname }} | {%- if proposal.speaker -%} {{ proposal.speaker.fullname }} {%- else -%} (open) {%- endif -%} | {{ proposal.section.title }} | {{ proposal.session_type }} | {{ proposal.technical_level }} | {{ proposal.votes.count }} | {{ proposal.created_at.strftime("%a, %b %e") }} | {% else %}
(No sessions have been submitted) |