{% extends "cfp/event/base.html" %} {% load compress %} {% load html_signal %} {% load i18n %} {% load rich_text %} {% load rules %} {% load static %} {% block title %}{% translate "Your proposals" %} :: {% endblock %} {% block content %} {% if information %}
{% translate "Title" %} | {% translate "State" %} | ||
---|---|---|---|
{{ submission.title }} | {% include "cfp/event/fragment_state.html" with state=submission.state %} |
{% if submission.public_slots %}
{% for talk in submission.public_slots %}
{{ talk.start|date:"Y-m-d" }}, {{ talk.start|date:"H:i" }}–{{ talk.end|date:"H:i" }}, {{ talk.room.name }} {% if not forloop.last %} {% endif %} {% endfor %} {% endif %} |
{% if submission.review_code %} {% endif %} {% if submission.state == 'accepted' %} {% translate "Confirm" %} {% endif %} {% if request.event.feature_flags.use_feedback and submission.does_accept_feedback %} {% translate "Feedback" %}{% if submission.feedback.count %} ({{ submission.feedback.count }}){% endif %} {% endif %} |
{% if request.event.cfp.is_open %} {% translate "Create a new proposal" %} {% endif %}
{% else %}{% translate "It seems like you haven't submitted anything to this event yet." %}
{% translate "If you did, maybe you used a different account? Check your emails!" %}
{% if request.event.cfp.is_open %}{% translate "If you did not, why not go ahead and create a proposal now? We'd love to hear from you!" %}
{% endif %} {% endif %} {% compress js %} {% endcompress %} {% endblock %}