{% extends 'generic/object_list.html' %} {% load helpers %} {% block title %}Command Logs{% endblock %} {% block controls %} {# Command logs are created programmatically - hide Add button #} {# Override entire controls block to prevent NetBox auto-generating Add button #}
{# Intentionally empty - no Add button for command logs #}
{% endblock controls %} {% block bulk_buttons %} {# Command logs are read-only - only allow bulk delete, not bulk edit #} {% if perms.netbox_toolkit_plugin.delete_commandlog %} {% endif %} {% endblock %} {% block content %} {{ block.super }} {% endblock %}