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

Production

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

View completed streams
{% if stream %} {% include 'production/partials/production_stream_card.html' %} {% else %}

Choose a Stream to see more details

{% endif %}

My Timesheet

{% if perms.scipost.can_view_timesheets %} See team timesheets {% endif %}
{% for log in request.user.work_logs.all %} {% empty %} {% endfor %}
Date Comment Stream Log type Duration
{{ log.work_date }} {{ log.comments }} {{ log.content }} {{ log.log_type }} {{ log.duration|duration }}
No logs 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 %}