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