{% extends 'material_base.html' %} {% block title %}Queue administration page{% endblock %} {% block description %}Queue administration page of the AYTA system{% endblock %} {% block content %}

Queue administration page

Options
Direct actions

Removes all queued ids

Prunes all deactivated endpoints, but keeps last 3 days
Create new endpoint
Leaving this empty will create a random secure string
Description for the endpoint for better administration
Queue manually
Must be a valid Youtube video ID
Queue up or start directly
Registered endpoints
{% for endpoint in endpoints %} {% endfor %}
Actions id description status created_time retired_time
{{ endpoint.get('id') }} {{ endpoint.get('description') }} {{ endpoint.get('status') }} {{ endpoint.get('created_time') }} {{ endpoint.get('retired_time') }}
Queued ID's
{% for id in queue %} {% endfor %}
Actions id endpoint status created_time
{{ id.get('id') }} {{ id.get('endpoint') }} {{ id.get('status') }} {{ id.get('created_time') }}
{% endblock %}