{% comment %} HTMX partial template for recent command history {% endcomment %} {% if recent_history %}
{% for log in recent_history %}
{{ log.command|truncatechars:40 }}
{{ log.username }} {{ log.execution_time|timesince }} ago
{% endfor %}
{% else %}
No history available
{% endif %}