+
+ Activity Audit (latest {{ activity_audits|length }})
+ {% if activity_audits %}
+
+
+ | ID |
+ Activity |
+ Action |
+ Performed |
+ Before |
+ After |
+
+ {% for au in activity_audits %}
+
+ | {{ au.id }} |
+ {{ au.activity_id }} |
+ {{ au.action }} |
+ {{ au.performed_at }} |
+ {{ au.before_json or '' }} |
+ {{ au.after_json or '' }} |
+
+ {% endfor %}
+
+ {% else %}
+ No activity audit entries yet.
+ {% endif %}
+
Arm Audit (latest {{ arm_audits|length }})
{% if arm_audits %}
@@ -295,6 +333,33 @@ Editing SoA {{ soa_id }}
No arm audit entries yet.
{% endif %}
+
+ Epoch Audit (latest {{ epoch_audits|length }})
+ {% if epoch_audits %}
+
+
+ | ID |
+ Epoch |
+ Action |
+ Performed |
+ Before |
+ After |
+
+ {% for au in epoch_audits %}
+
+ | {{ au.id }} |
+ {{ au.epoch_id }} |
+ {{ au.action }} |
+ {{ au.performed_at }} |
+ {{ au.before_json or '' }} |
+ {{ au.after_json or '' }} |
+
+ {% endfor %}
+
+ {% else %}
+ No epoch audit entries yet.
+ {% endif %}
+