{% extends "base.html" %} {% import "partials/nav.html" as nav %} {% import "partials/icons.html" as icons %} {% block title %}Queue — Quartermaster{% endblock %} {% block nav %}{% call nav::nav("queue", user, csrf_token, fika_installed) %}{% endcall %}{% endblock %} {% block content %}

Pending Operations

{% if user.role.can_manage_queue() && !ops.is_empty() %}
{% endif %}
{% if ops.is_empty() %}
{% call icons::check() %}{% endcall %}

All clear — no pending operations.

{% else %}
{% if user.role.can_manage_queue() %}{% endif %} {% for op in &ops %} {% if user.role.can_manage_queue() %} {% endif %} {% endfor %}
Action Mod Queued ByActions
{% if op.action == "install" %}install {% else if op.action == "update" %}update {% else if op.action == "remove" %}remove {% else %}{{ op.action }} {% endif %} {{ op.mod_name }} {{ op.queued_at }} {{ op.queued_by.as_deref().unwrap_or("-") }}
{% endif %} {% endblock %}