Screening: invitations to take charge
{% if not submission.editor_in_charge %}
There is no Editor-in-charge yet {% include 'bi/arrow-right.html' %}
Manage editor invitations
{% endif %}
{% for assignment in submission.editorial_assignments.all %}
{% include 'submissions/pool/_assignment_info.html' with assignment=assignment %}
{% empty %}
No assignment requests have been sent
{% endfor %}
{% if is_ed_admin %}
{% if not submission.editor_in_charge %}
{% else %}
See Recommendation
{% endif %}
{% elif rec.decision_fixed %}
{% if is_ed_admin or rec|user_can_vote:request.user %}
See Recommendation
{% endif %}
{% endif %}
{% endfor %}
{% endif %}
Events
{% if is_ed_admin %}
{% include 'submissions/_submission_events.html' with events=submission.events.for_edadmin %}
{% elif is_editor_in_charge %}
{% include 'submissions/_submission_events.html' with events=submission.events.for_eic %}
{% else %}
{% include 'submissions/_submission_events.html' with events=submission.events.for_author %}
{% endif %}