{% extends 'base.html' %} {% block content %}



{% if value %}

{{'%0.2f' % value[0]|float}} will drop to {{'%0.2f' % value[1]|float}} and then go back up to {{'%0.2f' % value[2]|float}} a difference of {{'%0.2f' % (value[0] - value[2])|float}} ({{'%0.2f' % ((value[0]-value[2])/value[0] * 100)|float}}% of original value)

To get back to the original value the dropped value would need to go up by {{'%0.2f' % value[3]|float}}%

{% endif %} {% endblock %}