{% load i18n log admin_kubi_tags %}
{% has_kubi_feature 'ADMIN_HISTORY' as has_admin_history %}
{% if has_admin_history and app_list %}
{% if is_app_index %}
{% for app in app_list %}
{% blocktrans with app.name as name %}{{ name }}{% endblocktrans %}
{% endfor %}
{% endif %}
{% trans 'Recent Actions' %}
{% if is_app_index %}
{% get_admin_log_for_app 10 as admin_log for_user user %}
{% else %}
{% get_admin_log 10 as admin_log for_user user %}
{% endif %}
{% if not admin_log %}
{% trans 'Currently there are no actions for this user.' %}