{% load i18n %}

{% translate "Recent Activity" %}

{% if recent_activity %}
{% for activity in recent_activity %}

{{ activity.action|default:"System activity" }}

{{ activity.timestamp|timesince }} ago

{% endfor %}
{% else %}

{% translate "No recent activity" %}

{% endif %}