{% extends 'base.html' %} {% block header %}
{% if request.user.is_authenticated %} {% endif %}
{{ block.super }}

{% block title %}Nautobot Command Usage Records{% endblock %}

{% endblock header %} {% block content %}
# of calls Command
{% for command_name, command_data in commands.items|dictsort:"0.lower" %}
{{ command_data.count }}

{{ command_name }}
{{ command_data.doc }}

{% for subcommand_name, subcommand_data in command_data.subcommands.items|dictsort:"0.lower" %}
{{ subcommand_data.count }}
{{ subcommand_name }}
{{ subcommand_data.doc }}
{% empty %}
(no subcommands)
{% endfor %} {% endfor %}
Clear filters Command History
{% include 'inc/table.html' %}
{% endblock content %}