So let's say I have a template with a couple of links, the links will be like this:
<a class='btn btn-primary' href='/?chart=new_chart&chart=other_chart'>View Summary</a>
However, most of the times when I have done links or included resources, I have used the following syntax:
<script src="{{ url_for('static', filename='some_silly_js') }}"></script>
is it possible to do a url_for with query parameters? Something like:
<a href="{{ url_for('stats', query_params={chart: [new_chart, other_chart]}) }}>View More</a>