From b675e65088d5667de34939ebb70a03952df50be0 Mon Sep 17 00:00:00 2001 From: Jorran de Wit <jorrandewit@outlook.com> Date: Mon, 18 Jun 2018 08:05:59 +0200 Subject: [PATCH] Add stream status block --- production/templates/production/production.html | 11 +++++++++++ 1 file changed, 11 insertions(+) diff --git a/production/templates/production/production.html b/production/templates/production/production.html index 4740ab7b5..9bc26dac5 100644 --- a/production/templates/production/production.html +++ b/production/templates/production/production.html @@ -52,6 +52,17 @@ <div class="row"> <div class="col-6"> + <h3>Stream statuses</h3> + <ul> + {% for stream in streams %} + <li class="pb-2"> + <div><strong>{{ stream.submission.title }}</strong></div> + <div class="label label-{% if stream.status == 'initiated' %}outline-danger{% else %}secondary{% endif %} label-sm">{{ stream.get_status_display }}</div> + <div>Opened {{ stream.opened }}</div> + </li> + {% endfor %} + </ul> + <hr> <ul class="list-unstyled" data-target="active-list"> {% for stream in streams %} <li class="p-2"> -- GitLab