{% extends "cfp/event/base.html" %} {% load i18n %} {% load rich_text %} {% load rules %} {% block title %}{% trans "Your submissions" %} :: {% endblock %} {% block content %} {% if information %}

{% trans "Important Information" %}

{% for info in information %} {{ info.title }} {{ info.text|rich_text }} {% if info.resource %} {{ info.resource.name }} {% endif %} {% endfor %} {% endif %}

{% trans "Your submissions" %}

{% if submissions %} {% for submission in submissions %} {% has_perm 'agenda.view_slot' request.user submission.slot as can_see_slot %} {% endfor %}
{% 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!" %}

{% trans "Submit something now!" %}

{% endif %} {% endif %} {% endblock %}