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

Dashboard

SPT {{ spt_version }} Tarkov {{ tarkov_version }} SPT Forge ↗
Mods
{{ mods.len() }}
installed
Queue
{{ pending_count }}
{% if pending_count > 0 %}pending{% else %}all clear{% endif %}
Server
Checking...
{% if fika_installed %}
Clients
Checking...
{% endif %}

Installed Mods ({{ mods.len() }})

Checking for updates...
{% if mods.is_empty() %}

No mods installed.

{% if user.role.can_manage_mods() %}

Go to Mods to install your first mod.

{% endif %}
{% else %} {% for m in mods %} {% endfor %}
Name Version Installed
{{ m.name }} {{ m.version }} {{ m.installed_at }}
{% endif %}
{% if pending_count > 0 %}

Pending Operations

{{ pending_count }} operation(s) queued. View queue

{% endif %} {% if !unmanaged_dirs.is_empty() %}

Unmanaged Mods

These mod directories are not tracked by Quartermaster. Use quma track to manage them.

{% for (dir, count) in &unmanaged_dirs %} {% endfor %}
DirectoryFiles
{{ dir }}{{ count }}
{% endif %} {% endblock %}