{% extends "base.html" %} {% block title %}Software · {{ agent.hostname }}{% endblock %} {% block content %}

Dashboard{{ org.name }}{{ agent.hostname }}

Installed Software

{{ total }} package(s) · {% if collected_at %}last reported {{ collected_at| pt('%Y-%m-%d %H:%M') }}{% else %}not reported yet{% endif %}

‹ Device
{% if last_cmd and (not collected_at or last_cmd.created_at > collected_at) and last_cmd.status in ('pending','sent') %}
Refresh requested — the agent will report its current software list on the next poll (~15s). Reload shortly.
{% endif %}
{% if items %}

Showing {{ shown }}{% if shown < total and not q %} of {{ total }}{% endif %} package(s){% if q %} matching “{{ q }}”{% endif %}.

{% for s in items %} {% endfor %}
NameVersionPublisherSource
{{ s.name }} {{ s.version or '—' }} {{ s.publisher or '—' }} {{ s.source or '—' }}
{% else %}

{% if q %}No installed software matches “{{ q }}”. {% else %}No software reported yet. The agent (v0.4.4+) reports its inventory ~2 min after starting and every 6h — or hit Refresh inventory to pull it now.{% endif %}

{% endif %}
{% endblock %}