{% extends "cfp/event/base.html" %} {% load i18n %} {% load rich_text %} {% load rules %} {% block title %}{% trans "Your submissions" %} :: {% endblock %} {% block content %} {% if information %}
{% trans "Title" %} | {% trans "State" %} | |
---|---|---|
{{ submission.title }} | {% include "cfp/event/fragment_state.html" with state=submission.state %} | {% if submission.editable %} {% endif %} {% if submission.state == 'accepted' %} {% trans "Confirm" %} {% endif %} {% if can_see_slot %} {% trans "Schedule" %} {% endif %} {% if submission.does_accept_feedback %} {% trans "Feedback" %} {% endif %} |
{% if request.event.cfp.is_open %} {% trans "Create a new submission" %} {% endif %}
{% else %}{% trans "It seems like you haven't submitted anything to this event yet." %}
{% trans "If you did, maybe you used a different account? Check your emails!" %}
{% if request.event.cfp.is_open %}{% trans "If you did not, why not go ahead and create a proposal now? We'd love to hear from you!" %}
{% endif %} {% endif %} {% endblock %}