From 59d2f2299894710a398f1f3130b31f2ea91dda55 Mon Sep 17 00:00:00 2001 From: Montana Date: Thu, 20 Dec 2018 09:53:16 -0500 Subject: [PATCH] change location of v-cloak on audit log without changing the position of the pagination component --- templates/audit_log/audit_log.html | 32 +++++++++++++++--------------- 1 file changed, 16 insertions(+), 16 deletions(-) diff --git a/templates/audit_log/audit_log.html b/templates/audit_log/audit_log.html index 222eca87..9290ba21 100644 --- a/templates/audit_log/audit_log.html +++ b/templates/audit_log/audit_log.html @@ -3,23 +3,23 @@ {% block content %} +
+
+
+

Activity History

+
-
-
-

Activity History

-
- -
    - {% for event in audit_events %} -
  • - {% autoescape false %} - {{ event | renderAuditEvent }} - {% endautoescape %} -
  • - {% endfor %} -
+
    + {% for event in audit_events %} +
  • + {% autoescape false %} + {{ event | renderAuditEvent }} + {% endautoescape %} +
  • + {% endfor %} +
+
{{ Pagination(audit_events, 'atst.activity_history') }} - -
+
{% endblock %}