{% extends 'production/base.html' %} {% block breadcrumb_items %} Production page {% endblock %} {% block pagetitle %}: Production page{% endblock pagetitle %} {% load bootstrap %} {% block content %}

Production

{{ perms.scipost.can_assign_production_officer|yesno:"Streams,My Streams" }}

View completed streams
{% for stream in streams %} {% empty %} {% endfor %}
Authors Title Accepted Latest Event Date
{{ stream.submission.author_list }} {{ stream.submission.title }} {{ stream.submission.acceptance_date|date:"Y-m-d" }} {{ stream.events.last.get_event_display }} {{ stream.events.last.noted_on }}
{% include 'production/partials/production_stream_card.html' with stream=stream prodevent_form=prodevent_form assignment_form=assignment_form %}
No production streams found.

My Timesheet

{% if perms.scipost.can_view_timesheets %} See team timesheets {% endif %}
{% for event in ownevents %} {% empty %} {% endfor %}
Date Stream Event Duration
{{ event.noted_on }} {{ event.stream }} {{ event.get_event_display }} {{ event.duration }}
No events found.
{% if perms.scipost.can_promote_user_to_production_officer %}

Production Tream

Current Production Team

{% if new_officer_form %}

Promote user to Production Officer

{% csrf_token %} {{ new_officer_form|bootstrap }}
{% endif %}
{% endif %}
{% endblock content %}