{% extends 'base.html' %} {% load commonmark %} {% load bornhack %} {% block content %}

Back to EventProposal List

{% if not event_proposal.can_be_approved %}

NOTE: Not all SpeakerProposals associated with this EventProposal have been approved. EventProposal can not be approved! It can still be rejected though.


{% endif %}
{{ event_proposal.event_type.name }} Proposal: {{ event_proposal.title }}
{{ event_proposal.abstract|untrustedcommonmark }}

Details for {{ event_proposal.title }}

UUID {{ event_proposal.uuid }}
Status {{ event_proposal.proposal_status }}
EventType {{ event_proposal.event_type.icon_html }} {{ event_proposal.event_type }}
Duration {{ event_proposal.duration }} minutes
Tags {% for tag in event_proposal.tags.all %} {{ tag }} {% empty %} N/A {% endfor %}
Use provided laptop? {{ event_proposal.use_provided_speaker_laptop|truefalseicon }}
Submission Notes {{ event_proposal.submission_notes|untrustedcommonmark|default:"N/A" }}

URLs for {{ event_proposal.title }}

{% if event_proposal.urls.exists %} {% include 'includes/event_proposal_url_table.html' %} {% else %} Nothing found. {% endif %}

{{ event_proposal.event_type.host_title }} Proposals for {{ event_proposal.title }}

{% if event_proposal.speakers.exists %} {% include 'includes/speaker_proposal_list_table_backoffice.html' with speaker_proposal_list=event_proposal.speakers.all nodatatable=True %} {% else %} Nothing found. {% endif %}
{% if not event_proposal.can_be_approved %}

NOTE: Not all SpeakerProposals associated with this EventProposal have been approved. EventProposal can not be approved! It can still be rejected though.


{% endif %}

{% if event_proposal.proposal_status == "pending" %} {% if form.instance.can_be_approved %} Approve EventProposal {% endif %} Reject EventProposal {% endif %} Back to EventProposal List

{% endblock content %}