Change date format and order list of users by age of account
This commit is contained in:
@@ -9,8 +9,10 @@
|
||||
<script src="https://cdn.tailwindcss.com"></script>
|
||||
<script src="https://cdn.plot.ly/plotly-2.14.0.min.js"></script>
|
||||
<script>
|
||||
window.addEventListener('resize', function () {
|
||||
window.dispatchEvent(new Event('resize'));
|
||||
let doit;
|
||||
window.addEventListener('resize', () => {
|
||||
clearTimeout(doit);
|
||||
doit = setTimeout(window.dispatchEvent(new Event('resize')), 100);
|
||||
})
|
||||
</script>
|
||||
</head>
|
||||
|
||||
@@ -41,6 +41,7 @@
|
||||
x: {{ e['EstimatedOneRepMaxProgressions']['StartDates'] | replace('"', "'") | safe }},
|
||||
y: {{ e['EstimatedOneRepMaxProgressions']['Estimated1RMs'] | replace('"', "'") | safe }},
|
||||
text: {{ e['EstimatedOneRepMaxProgressions']['TopSets'] | replace('"', "'") | safe }},
|
||||
name: "{{ p['PersonName'] }} - {{ e['ExerciseName'] }}",
|
||||
hovertemplate
|
||||
}], layout, config);
|
||||
</script>
|
||||
|
||||
Reference in New Issue
Block a user