|
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<title>Production Heatmap</title>
|
|
</head>
|
|
<body>
|
|
<form method="get">
|
|
<div class="scrollable">
|
|
<label>Select Crops:</label><br>
|
|
{% for crop in crops %}
|
|
<input type="checkbox" name="crops" value="{{ crop }}" {% if crop in selected_crops %}checked{% endif %}>
|
|
{{ crop }}<br>
|
|
{% endfor %}
|
|
</div>
|
|
<input type="submit" value="Update Heatmap">
|
|
</form>
|
|
<iframe src="{{ map_url }}"></iframe>
|
|
</body>
|
|
</html>
|
|
|