{% extends "base.html" %} {% block content %} {% for pipeline, state in pipelines.items() %} {% set state_colors = {'PLAYING': 'success', 'PAUSED': 'warning', 'NULL': 'danger'} %} {% endfor %}
Name State Actions
{{ pipeline }}{{ state }}
{% if state == 'PLAYING' %} {% else %} {% endif %}
{% endblock %}