Logged in as {{ user.nickname }} - Logout

{{ strategy.class }}

Active executions

{% if active_executions %}
    {% for active_execution in active_executions %}
  • Started on {{ active_execution.created }}.
    • {{ active_execution.executions_finished }}/{{ active_execution.total_executions }} executions finished.
    • {% if active_execution.best_result %}
    • Best result found so far was {{ active_execution.best_result }} with parameters {{ active_execution.best_result_parameters }}.
    • {% endif %}
  • {% endfor %}
{% else %} No active executions were found. {% endif %}

Finished executions

{% if finished_executions %}
    {% for finished_execution in finished_executions %}
  • Started on {{ finished_execution.created }}.
      {% if finished_execution.best_result %}
    • Best result found was {{ finished_execution.best_result }} with parameters {{ finished_execution.best_result_parameters }}.
    • {% endif %} {% if finished_execution.additional_info %}
    • {{ finished_execution.additional_info }}
    • {% endif %} {% if finished_execution.reexecute_url %}
    • Re-execute.
    • {% endif %}
  • {% endfor %}
{% else %} No finished executions were found. {% endif %}