{% extends 'generic/object.html' %}
{% load helpers %}
{% load static %}
{% block style %}
{% endblock %}
{% block buttons %}
{% if perms.netbox_toolkit_plugin.change_command %}
Edit
{% endif %}
{% if perms.netbox_toolkit_plugin.delete_command %}
Delete
{% endif %}
{% endblock %}
{% block content %}
| Name |
{{ object.name }} |
| Platforms |
{% for platform in object.platforms.all %}
{{ platform|linkify }}{% if not forloop.last %}, {% endif %}
{% empty %}
No platforms assigned
{% endfor %}
|
| Command Type |
{{ object.get_command_type_display }}
{% if can_execute %}
Executable
{% else %}
No Execute Permission
{% endif %}
|
| Description |
{{ object.description|placeholder }} |
{% include 'inc/panels/custom_fields.html' %}
{% include 'inc/panels/tags.html' %}
| Device |
Username |
Execution Time |
{% for log in object.logs.all|slice:":5" %}
| {{ log.device|linkify }} |
{{ log.username }} |
{{ log.execution_time }} |
{% empty %}
| No command executions recorded |
{% endfor %}
{% endblock %}