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