summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--ogcp/templates/actions/mode.html18
1 files changed, 18 insertions, 0 deletions
diff --git a/ogcp/templates/actions/mode.html b/ogcp/templates/actions/mode.html
index d89f536..c765f4b 100644
--- a/ogcp/templates/actions/mode.html
+++ b/ogcp/templates/actions/mode.html
@@ -49,4 +49,22 @@
button_map={'ok': 'primary'},
extra_classes="m-5") }}
+<!-- jQuery -->
+<script src="{{ url_for('static', filename='AdminLTE/plugins/jquery/jquery.min.js') }}"></script>
+<script>
+ var modesSet = {{ modes_set|tojson|safe }};
+ // Update pill data
+ $('.badge-pill').each(function(index) {
+ for (const mode in modesSet) {
+ for (const clientName of modesSet[mode]) {
+ console.log(mode, clientName, $(this).html())
+ if ($(this).html().includes(clientName)) {
+ $(this).html($(this).html() + '<br>mode: ' + mode);
+ break;
+ }
+ }
+ }
+ });
+</script>
+
{% endblock %}