{% extends 'base.html' %} {% load base_extras inventory_extras %} {% block content %}

{% machine_type_icon machine %} {% machine_platform_icon machine %} {% if machine.computer_name %}{{ machine.computer_name }} / {% endif %}{{ serial_number }} / profiles

{% if machine.snapshots_with_profiles %} {% for ms in machine.snapshots_with_profiles %}
{% for profile in ms.ordered_profiles %} {% endfor %}
Details Payloads UUID
{% if profile.display_name %}
Display name
{{ profile.display_name }}
{% endif %} {% if profile.identifier %}
Identifier
{{ profile.identifier }}
{% endif %} {% if profile.organization %}
Organization
{{ profile.organization }}
{% endif %} {% if profile.description %}
Description
{{ profile.description }}
{% endif %} {% if profile.install_date %}
Install date
{{ profile.install_date }}
{% endif %}
Removal allowed
{{ profile.removal_allowed|yesno }}
Verified
{{ profile.verified|yesno }}
    {% for payload in profile.payloads.all %}
  • {{ payload.type }}
  • {% endfor %}
{{ profile.uuid }}
last change
{% if ms.public_ip_address %}{{ ms.public_ip_address }} - {% endif %} {{ ms.mt_created_at|date:'r'|default:'-' }}
{% if ms.last_commit.last_seen %}
last seen
{{ ms.last_commit.last_seen|date:'r' }}
{% endif %}
{% endfor %} {% endif %} {% endblock %} {% block extrajs %} {% endblock %}