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

Production

{% if perms.scipost.can_view_all_production_streams %}

Streams summary

{% for stream in streams %} {% endfor %}
Submission Target Journal
(Tier)
Status Latest activity
Submission accepted
Has supervisor Production officer
Invitations officer
{{ stream.submission.title }}
by {{ stream.submission.author_list }}
{{ stream.submission.get_submitted_to_journal_display }}{% for rec in stream.submission.eicrecommendations.all %}
({{ rec|Tier }}){% endfor %}
{{ stream.get_status_display }}
{{ stream.latest_activity|timesince }} ago
{{ stream.opened|timesince }} ago
{% if stream.supervisor %} {{ stream.supervisor }} {% else %} {% endif %} {% if stream.officer %} {{ stream.officer }} {% else %} {% endif %}
{% if stream.invitations_officer %} {{ stream.invitations_officer }} {% else %} {% endif %}
{% endif %}

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

View completed streams
    {% for stream in streams %}
  • {% if stream.supervisor.user == request.user %}
    {% endif %}

    {{ stream.submission.title }}
    by {{ stream.submission.author_list }}

    Submission accepted {{ stream.opened|timesince }} ago

    {{ stream.get_status_display }}

    See stream details
  • {% endfor %}
{% 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 %}