{% extends "base.html" %} {% load static %} {% block title %} Management Commands {% endblock title %} {% block extra_head %} {# Removed custom CSS styles in favor of Tailwind classes #} {% endblock extra_head %} {% block content %} {% include "includes/sidenav.html" %}
| Command {% if sort == 'name' %} {% elif sort == '-name' %} {% endif %} | Description | Last Run {% if sort == 'last_run' %} {% elif sort == '-last_run' %} {% endif %} | Status {% if sort == 'status' %} {% elif sort == '-status' %} {% endif %} | Run Count {% if sort == 'run_count' %} {% elif sort == '-run_count' %} {% endif %} | 30 Day Activity {% if sort == 'activity' %} {% elif sort == '-activity' %} {% endif %} | Actions | ||||||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
|
{{ command.name }}
{% if command.arguments %}
{% endif %}
|
{{ command.help_text }} | {% if command.last_run %} {{ command.last_run|timesince }} ago {% else %} Never {% endif %} | {% if command.last_run %} {% if command.last_success %} Success {% else %} Failed {% endif %} {% else %} Not Run {% endif %} | {{ command.run_count|default:"0" }} |
{% if command.stats_data %}
{% for data in command.stats_data %}
{% endfor %}
Max: {{ command.max_value }}
{% else %}
No data
{% endif %}
|
{% if request.user.is_superuser %}
{% if command.arguments %}
{% else %}
{% endif %}
{% else %}
Superuser only
{% endif %}
|
||||||||||||
Command Arguments
|
||||||||||||||||||