{% if theme() and file_exists('app/templates/themes/' + theme() + '/base.html') %} {% extends 'themes/' + theme() + '/base.html' %} {% else %} {% extends "base.html" %} {% endif %} {% from 'bootstrap/form.html' import render_form %} {% set active_child = 'admin_activities' %} {% block app_content %}

{{ _('Activities') }}

Result Filter: All | Failure | Success | Ignored | Processing --- Direction Filter: Both | In | Out {% for activity in activities.items %} {% if activity.result == 'success' %} {% elif activity.result == 'ignored' %} {% else %} {% endif %} {% endfor %}
When Direction ID Type Result Message JSON
{{ arrow.get(activity.created_at).humanize(locale=locale) }} {{ activity.direction }} {{ activity.activity_id }} {{ activity.activity_type if activity.activity_type else '' }}{{ activity.result }}{{ activity.result }}{{ activity.result }}{{ activity.exception_message if activity.exception_message else '' }} {% if activity.activity_json is none %} None {% else %} View {% endif %}

{% include 'admin/_nav.html' %}

{% endblock %}