{% extends "base.html" %} {% from 'bootstrap/form.html' import render_form %} {% block app_content %}
{% include 'admin/_nav.html' %}
{% for activity in activities %} {% if activity.result == 'success' %} {% elif activity.result == 'ignored' %} {% else %} {% endif %} {% endfor %}
When Direction ID Type Result Message JSON
{{ moment(activity.created_at).fromNow() }} {{ 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 '' }} View
{% endblock %}