2024-02-20 11:17:06 +01:00
|
|
|
|
2024-03-06 10:52:47 +01:00
|
|
|
<div class="flex-fill col-md-5 col-lg-4 col-12 card bg-light mb-6">
|
2024-02-20 11:17:06 +01:00
|
|
|
<div class="card-body">
|
|
|
|
|
<h5 class="card-title">📅 Heatmap</h5>
|
|
|
|
|
<div id="heatmap"></div>
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
|
|
|
|
|
<script>
|
2024-03-07 14:28:20 +01:00
|
|
|
// Generates activity based on the Values given by the Backend
|
2024-02-20 11:17:06 +01:00
|
|
|
const activityData = {{ heatmap_values }};
|
2024-03-07 15:56:33 +01:00
|
|
|
const day = {{ day }};
|
2024-03-07 16:26:56 +01:00
|
|
|
const color = "{{ color }}";
|
2024-02-28 10:46:26 +01:00
|
|
|
</script>
|