{% extends "layout.html" %} {% block title %} Détails - {{ proc_id }} - BEx {% endblock title %} {% block content %}

Détails de la condition {{ proc_id }}

{% if not error %}
Wet Process
{% for key, value in wet_process.items() %} {% endfor %}
Champ Valeur
{{ key.replace('_', ' ') }} {{ value }}
{% if bi_process_data %}
Bi Process : {{ selected_bi }}
{% if bi_process_data.error %}
{{ bi_process_data.error }}
{% else %}
{% for key, value in bi_process_data.items() %} {% if key == 'steps' %} {% else %} {% endif %} {% endfor %}
Champ Valeur
Steps
{% for step in value %} {% endfor %}
Commande Nom Version Sortie
{{ step.cmd }} {{ step.name }} {{ step.version }} {{ step.output if 'output' in step else '-' }}
{{ key.replace('_', ' ') }} {{ value }}
{% endif %}
{% endif %}
{% else %} {% endif %}
{% endblock content %}