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

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.productionevent_set.last.get_event_display }} {{ stream.productionevent_set.last.noted_on }}
{% include 'production/_production_stream_card.html' with stream=stream form=prodevent_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/_production_timesheet_card.html' with events=member.productionevent_set.all %}
No Team Member found.
{% endif %}
{% endblock content %}