annot-server/webapp/templates/admin/sync_event_session.html
author rougeronj
Thu, 22 Jan 2015 09:26:43 +0100
changeset 111 a7b72620d227
parent 67 7db9c7ec691a
permissions -rw-r--r--
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 %}