feat: Remove betting mode select menu from cashier dashboard

- Remove betting mode configuration section from cashier.html template
- Remove associated JavaScript functions (loadCashierBettingMode, saveBettingMode)
- Clean up event listeners and initialization code
- Betting mode functionality is now restricted to admin users only
- Improves UI by removing irrelevant features for cashier role
parent b188a174
...@@ -212,6 +212,9 @@ ...@@ -212,6 +212,9 @@
</div> </div>
</div> </div>
<!-- Betting Mode Configuration - Hidden for Cashier Users -->
<!-- This feature is only available to admin users -->
<!-- Session Information --> <!-- Session Information -->
<div class="card mb-4"> <div class="card mb-4">
<div class="card-header"> <div class="card-header">
...@@ -390,6 +393,8 @@ ...@@ -390,6 +393,8 @@
// Load pending matches for cashier dashboard // Load pending matches for cashier dashboard
loadPendingMatches(); loadPendingMatches();
// Betting mode functionality removed for cashier users
}); });
function initializeClock() { function initializeClock() {
...@@ -787,6 +792,8 @@ ...@@ -787,6 +792,8 @@
overlayTemplateSelect.innerHTML = '<option value="default">Default</option>'; overlayTemplateSelect.innerHTML = '<option value="default">Default</option>';
}); });
} }
// Betting mode functions removed - not available for cashier users
</script> </script>
</body> </body>
</html> </html>
\ No newline at end of file
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment