{% extends "submit/submit_base.html" %} {# Copyright The IETF Trust 2015, All Rights Reserved #} {% load origin static %} {% block pagehead %} {% endblock %} {% block title %}Draft submission approvals{% endblock %} {% load ietf_filters %} {% block submit_content %} {% origin %} {% if user.is_authenticated %}

Submissions you can approve

{% if not approvals %}

You don't have any submissions to approve.

{% else %} {% for s in approvals %} {% endfor %}
Draft Submitted
{{ s.name }}-{{ s.rev }} {{ s.submission_date }}
{% endif %}

Pre-approved drafts not yet submitted

{% if user|has_role:"Secretariat,WG Chair,RG Chair" %}

Add pre-approval

{% endif %} {% if not preapprovals %}

No pre-approvals within your jurisdiction found.

{% else %} {% for p in preapprovals %} {% endfor %}
Draft name Pre-approved By
{{ p.name }} {{ p.time|date:"Y-m-d" }} {{ p.by }} Cancel
{% endif %}

Approved drafts within the past {{ days }} days

{% if not recently_approved %}

No drafts approved.

{% else %} {% for d in recently_approved %} {% endfor %}
Draft Submitted
{{ d.name }} {{ d.submission_date }}
{% endif %} {% else %}

Submission of approvals

This is where chairs and the secretariat can approve and pre-approve document submissions which require approval, such as WG -00 drafts.

You need to sign in in order to handle approvals.

{% endif %} {% endblock %} {% block js %} {% endblock %}