{% extends 'production/partials/production_stream_card_completed.html' %} {% load bootstrap %} {% load guardian_tags %} {% get_obj_perms request.user for stream as "sub_perms" %} {% block actions %}

Events

{% include 'production/partials/production_events.html' with events=stream.events.all %} {% if "can_perform_supervisory_actions" in sub_perms %} {% if perms.scipost.can_publish_accepted_submission or perms.scipost.can_assign_production_supervisor and perms.scipost.can_assign_production_officer %}

Actions

{% endif %} {% endif %} {% endblock %} {% block officers %}
  • Production Supervisor: {% if stream.supervisor %} {{ stream.supervisor }} {% if perms.scipost.can_assign_production_supervisor %} · Remove from stream {% endif %} {% else %} No Supervisor assigned yet. {% endif %}
  • Production Officer: {% if stream.officer %} {{ stream.officer }} {% if perms.scipost.can_assign_production_officer and "can_perform_supervisory_actions" in sub_perms %} · Remove from stream {% endif %} {% else %} No Officer assigned yet. {% endif %}
  • {% endblock %}