change location of v-cloak on audit log without changing the position of the pagination component

This commit is contained in:
Montana 2018-12-20 09:53:16 -05:00
parent 57f648b720
commit 59d2f22998

View File

@ -3,23 +3,23 @@
{% block content %} {% block content %}
<div v-cloak>
<section class="block-list">
<header class="block-list__header">
<h1 class="block-list__title">Activity History</h1>
</header>
<section v-cloak class="block-list"> <ul>
<header class="block-list__header"> {% for event in audit_events %}
<h1 class="block-list__title">Activity History</h1> <li class="block-list__item">
</header> {% autoescape false %}
{{ event | renderAuditEvent }}
<ul> {% endautoescape %}
{% for event in audit_events %} </li>
<li class="block-list__item"> {% endfor %}
{% autoescape false %} </ul>
{{ event | renderAuditEvent }} </section>
{% endautoescape %}
</li>
{% endfor %}
</ul>
{{ Pagination(audit_events, 'atst.activity_history') }} {{ Pagination(audit_events, 'atst.activity_history') }}
</div>
</section>
{% endblock %} {% endblock %}