{% extends 'generic/object.html' %}
{% load helpers %}
{% load static %}
{% block style %}
{% endblock %}
{% block buttons %}
{% if perms.netbox_toolkit.change_command %}
Edit
{% endif %}
{% if perms.netbox_toolkit.delete_command %}
Delete
{% endif %}
{% endblock %}
{% block content %}
Name |
{{ object.name }} |
Platform |
{{ object.platform|linkify }} |
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 %}