{% extends 'scipost/_personal_page_base.html' %}
{% block breadcrumb_items %}
{{block.super}}
Production page
{% endblock %}
{% block pagetitle %}: Production page{% endblock pagetitle %}
{% load bootstrap %}
{% block content %}
Authors |
Title |
Accepted |
Latest Event |
Date |
{% for stream in streams %}
{{ 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 %}
|
{% empty %}
No production streams found. |
{% endfor %}
Date |
Stream |
Event |
Duration |
{% for event in ownevents %}
{{ event.noted_on }} |
{{ event.stream }} |
{{ event.get_event_display }} |
{{ event.duration }} |
{% empty %}
No events found. |
{% endfor %}
{% if perms.scipost.can_view_timesheets %}
Name |
{% for member in production_team.all %}
{{ member }} |
{% include 'production/_production_timesheet_card.html' with events=member.productionevent_set.all %}
|
{% empty %}
No Team Member found. |
{% endfor %}
{% endif %}
{% endblock content %}