{% extends 'scipost/_personal_page_base.html' %} {% block breadcrumb_items %} {{block.super}} Production page {% endblock %} {% block pagetitle %}: Production page{% endblock pagetitle %} {% load bootstrap %} {% block content %}

Production

{{ perms.scipost.can_assign_production_officer|yesno:"Streams,My 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

{% 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_view_timesheets %}

Team Timesheets

{% for member in production_team.all %} {% empty %} {% endfor %}
Name
{{ member }}
{% include 'production/partials/production_timesheet_card.html' with events=member.productionevent_set.all %}
No Team Member found.
{% endif %} {% if perms.scipost.can_promote_user_to_production_officer %}

Production Officers

Current Production Officer

{% if new_officer_form %}

Promote user to Production Officer

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