{% from 'form.html' import render_form %} {% if daemon_running %} {% set status_cls = 'label label-success' %} {% set status_txt = 'Running' %} {% set toggle_txt = 'Stop daemon' %} {% set restart_cls = 'btn' %} {% else %} {% set status_cls = 'label label-important' %} {% set status_txt = 'Not Running' %} {% set toggle_txt = 'Start daemon' %} {% set restart_cls = 'btn disabled' %} {% set restart_attrs = 'disabled="disabled"' %} {% endif %}
Sync Daemon The sync daemon is a process which synchronizes the counter data of the yubikey-val server with the other servers in its sync pool.

Current status: {{ status_txt }}

{{ render_form(fieldsets, target) }}