Merge pull request #497 from dod-ccpo/v-cloak

Prevent Vue from Loading Variables Before Evaluation
This commit is contained in:
montana-mil
2018-12-20 10:09:04 -05:00
committed by GitHub
5 changed files with 23 additions and 22 deletions

View File

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