diff --git a/templates/cluster/workers_list.html b/templates/cluster/workers_list.html index d4a421c..a958c5b 100644 --- a/templates/cluster/workers_list.html +++ b/templates/cluster/workers_list.html @@ -142,14 +142,68 @@ +
+ {% endblock %} {% block custom_page_scripts %} - + + // Cluster Feature Modal Logic + if (!sessionStorage.getItem('cluster_modal_dismissed')) { + $('#clusterFeatureModal').modal('show'); + } + + // "I Understand" button persists dismissal + $('#btn-dismiss-cluster-modal').click(function () { + $('#clusterFeatureModal').modal('hide'); + sessionStorage.setItem('cluster_modal_dismissed', 'true'); + }); + }); + {% endblock %} \ No newline at end of file