crop_geospatial_analysis / templates /production_heatmap.html
Rajkhanke007's picture
Upload 9 files
788caba verified
raw
history blame contribute delete
670 Bytes
<!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>