{% extends "_base.html" %} {% block page_title %}OT Requests Admin Page - {% endblock %} {% block css %} {% endblock %} {% block content %}

Requests With Errors

These origin trials had an error occur during the creation process. Investigate the issues using the troubleshooting guide.

{% if failed_stages %} {% for stage in failed_stages %}

{{ stage.ot_display_name }}

Key Information

Requester{{ stage.ot_requester_email or stage.ot_owner_email }}
Owner{{ stage.ot_owner_email }}
Contacts{{ stage.ot_emails | join(', ') }}
Chromium Trial Name{{ stage.ot_chromium_trial_name or 'Not specified' }}
Use Counter{{ stage.ot_webfeature_use_counter or 'Not specified' }}

Timeline

Start Milestone{{ stage.desktop_first }}
End Milestone{{ stage.desktop_last }}

Details & Links

Description{{ stage.ot_description }}

Trial Attributes

Third-party Support
Critical Trial
Deprecation Trial
{% endfor %} {% else %}

No requests with validation errors found.

{% endif %}

Extensions Awaiting Initiation

These extensions have been requested, but are not yet initiated.

{% if extension_stages %}
{% for stage_info in extension_stages %}

{{ stage_info.ot_stage.ot_display_name }}

Trial ID{{ stage_info.ot_stage.origin_trial_id }}
New End Milestone{{ stage_info.extension_stage.desktop_last }}
Intent to ExtendView Thread
Comments{{ stage_info.extension_stage.ot_request_note or 'None' }}
{% endfor %}
{% else %}

No extensions awaiting initiation.

{% endif %}

Trials Pending Creation or Activation

{% for stage in activation_pending_stages %}

{{ stage.ot_display_name }} Pending Activation

Trial ID{{ stage.origin_trial_id }}
Activation Date{{ stage.ot_activation_date }}
{% endfor %} {% for stage in creation_stages %}

{{ stage.ot_display_name }} Creation in Progress

Trial ID{{ stage.origin_trial_id }}
{% endfor %} {% if not activation_pending_stages and not creation_stages %}

No trials pending activation or in creation.

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