I am working on a little flask project and in my javascript script I have a variable which works as a counter.
When I receive a POST request I would like my python script to extract this counter variable.
I tried to set a jinja2 variable by doing {%set extractor_var = js_counter%} but it seems to be impossible to use a javascript variable inside a jinja2 template.
Can anyone lead me to another solution?