test_app/site_template.j2
2025-02-25 17:51:06 +02:00

28 lines
979 B
Django/Jinja

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Traffic Light</title>
<style>
body { text-align: center; font-family: Arial, sans-serif; }
.light-container { display: inline-block; margin-top: 50px; }
.light { width: 80px; height: 80px; margin: 10px; border-radius: 50%; background: gray; }
.red { background: red; }
.yellow { background: yellow; }
.green { background: green; }
</style>
<script src="frontend.js" defer></script>
</head>
<body>
<h1>Traffic Light</h1>
<div class="light-container">
<div id="red" class="light {% if state == 'red' %}red{% endif %}"></div>
<div id="yellow" class="light"></div>
<div id="green" class="light {% if state == 'green' %}green{% endif %}"></div>
</div>
<br>
<button onclick="toggleLight()">Toggle Green</button>
</body>
</html>