From d87f2b17edb403860a4ae151395505624660afbf Mon Sep 17 00:00:00 2001 From: Andrew Croce Date: Tue, 25 Sep 2018 16:03:08 -0400 Subject: [PATCH] audit log markup --- templates/audit_log.html | 35 +++++++++++++++++++++++------------ 1 file changed, 23 insertions(+), 12 deletions(-) diff --git a/templates/audit_log.html b/templates/audit_log.html index 68b54f80..2ae23517 100644 --- a/templates/audit_log.html +++ b/templates/audit_log.html @@ -3,20 +3,31 @@ {% block content %} -
-
-
-

Acitivity History

-
+
+
+

Activity History

+
-
    - {% for event in audit_events %} -
  • {{ event }}
  • - {% endfor %} -
+
    + {% for event in audit_events %} +
  • +
    +
    + +
    -
+
+

+ {{ event.user.full_name if event.user else "ATAT System" }} +

+ {{ event.activity_description }} +
+ + + {% endfor %} + + +
-
{% endblock %}