{% if user.speaker_profile %}
{% trans "Your Proposals" %}
{% if user.speaker_profile.proposals.exists %}
{% trans "Title" %} |
{% trans "Session type" %} |
{% trans "Status" %} |
{% trans "Actions" %} |
{% for proposal in user.speaker_profile.proposals.all %}
{% include "proposals/_proposal_row.html" %}
{% endfor %}
{% else %}
{% trans "No proposals submitted yet." %}
{% endif %}
{% associated_proposals as associated_proposals %}
{% if associated_proposals %}
{% trans "Proposals you have joined as an additional speaker" %}
{% trans "Title" %} |
{% trans "Session type" %} |
{% trans "Status" %} |
{% trans "Actions" %} |
{% for proposal in associated_proposals %}
{% include "proposals/_proposal_row.html" %}
{% endfor %}
{% endif %}
{% pending_proposals as pending_proposals %}
{% if pending_proposals %}
{% trans "Proposals you have been invited to join" %}
{% trans "Title" %} |
{% trans "Session type" %} |
{% trans "Status" %} |
{% trans "Actions" %} |
{% for proposal in pending_proposals %}
{% include "proposals/_pending_proposal_row.html" %}
{% endfor %}
{% endif %}
{% elif proposals_are_open %}
{% trans "To submit a proposal, first create a speaker profile." %}
{% endif %}