{% extends "base.html" %} {% load static %} {% block title %} Queue Management {% endblock title %} {% block content %}

Queue Management

{% if is_launch_authorized %} {% endif %} Organizations
{% if messages %}
{% for message in messages %}
{{ message|safe }}
{% endfor %}
{% endif %} {% if is_launch_authorized %} {% endif %}
{% for item in queue_items %} {% empty %} {% endfor %}
ID Message Image Created Status Transaction Details Actions
{{ item.id }} {{ item.message|truncatechars:50 }} {% if item.image %} Queue image {% else %} No image {% endif %} {{ item.created|date:"M d, Y H:i" }} {% if item.launched %} Launched {% else %} Pending {% endif %}
{% if item.url %} {% endif %} {% if item.txid %}
ID: {{ item.txid }}
{% else %}
Transaction ID: Not available
{% endif %} {% if item.launched %}
{% csrf_token %}
{% endif %}
{% if not item.launched %}
{% csrf_token %}
{% endif %}
No queue items found.
{% endblock content %}