diff options
Diffstat (limited to 'ogcp/templates/actions')
-rw-r--r-- | ogcp/templates/actions/oglive.html | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/ogcp/templates/actions/oglive.html b/ogcp/templates/actions/oglive.html index 81b70dd..6cfc523 100644 --- a/ogcp/templates/actions/oglive.html +++ b/ogcp/templates/actions/oglive.html @@ -48,4 +48,23 @@ button_map={'ok': 'primary'}, extra_classes="m-5") }} + +<!-- jQuery --> +<script src="{{ url_for('static', filename='AdminLTE/plugins/jquery/jquery.min.js') }}"></script> +<script> + var ogLivesSet = {{ oglives_set|tojson|safe }}; + // Update pill data + $('.badge-pill').each(function(index) { + for (const ogLive in ogLivesSet) { + for (const clientName of ogLivesSet[ogLive]) { + if ($(this).html().includes(clientName)) { + $(this).html($(this).html() + '<br>' + ogLive); + break; + } + } + } + }); +</script> + + {% endblock %} |