{% load bootstrap %} {% load guardian_tags %} {% get_obj_perms request.user for stream as "sub_perms" %}
{% include 'submissions/_submission_card_content_sparse.html' with submission=stream.submission %}

Officers

    {% block officers %}
  • Production Supervisor: {% if stream.supervisor %} {{ stream.supervisor }} {% else %} No Supervisor assigned. {% endif %}
  • Production Officer: {% if stream.officer %} {{ stream.officer }} {% else %} No Officer assigned. {% endif %}
  • {% endblock %}
{% block actions %}

Events

{% include 'production/partials/production_events.html' with events=stream.events.all non_editable=1 %} {% endblock %}
{% if prodevent_form and "can_work_for_stream" in sub_perms %}

Add an event to this production stream:

{% csrf_token %} {{ prodevent_form|bootstrap }}
{% endif %}