I am currently using Flask and I got a counter for how many IDs are there. But how do I increase another variable whenever I delete 1 ID. So that I am able to show how many points have been deleted. E.g. If count - 1, x + 1
<div>
{% if count == 0 %}
<p>You currently have no points.</p>
{% elif count == 1 %}
<p>There is 1 point.</p>
{% else %}
<p>There are {{ count }} points.</p>
{% endif %}