{% extends 'generic/object.html' %} {% load helpers %} {% load static %} {% block style %} {% endblock %} {% block control-buttons %} {# Command logs are read-only audit records - only show delete button #} {# Override control-buttons to prevent NetBox from auto-generating edit buttons #} {% if perms.netbox_toolkit_plugin.delete_commandlog %} Delete {% endif %} {% endblock control-buttons %} {% block content %}
| Command | {{ object.command|linkify }} |
|---|---|
| Device | {{ object.device|linkify }} |
| Username | {{ object.username }} |
| Execution Time | {{ object.execution_time }} |
| Status | {% if object.success %} Success {% else %} Failed {% endif %} |
| Duration | {{ object.execution_duration|floatformat:3 }}s |
| Notes | {{ object.notes }} |
| Parsing Status |
Successfully Parsed
Parsed from raw output |
| Error | {{ object.error_message }} |
{{ object.output }}