{% extends "web/base.html" %} {% block title %}Activity | tcx{% endblock %} {% block page_label %}Activity{% endblock %} {% block content %}
Recent activity

{{ activity|length }} records

{% for item in activity %}
{{ item.kind }} {{ item.title }} {{ item.subtitle }} · {{ item.status }} · {{ item.created_at|date:"Y-m-d H:i" }}
{% empty %}

No activity has been recorded yet.

{% endfor %}
{% endblock %}