Add variable "wait". When this variable set, the annotsroll wait ignore some annotations, and wait before printing an otherone so there is no superposition. Can be passed as an options
{% extends 'admin/master.html' %}
{% block body %}
<h3>Sync on project {{event_session.project_id}}</h3>
{% if error %}
<h3 style="color: red">KO</h3>
<div>{{error}}</div>
{% else %}
<h3 style="color: green">Ok</h3>
{% endif %}
<h4>Sync arguments</h4>
<pre>
{{sync_args}}
</pre>
<h4>Logs</h4>
<pre>
{% for line in logs %}
{{line}}<br>
{% endfor %}
</pre>
{% endblock %}