{% extends 'base.html' %} {% block 'content' %}
{% if user.is_authenticated %}
{% csrf_token %}
{% if nextDays %}
Predcition for next 30 days
{% for price in nextDays %} {% endfor %}
Day Closing Price
{{forloop.counter}} {{ price|floatformat:2 }}
{% endif %}
{% else %}

Login

{{ error }}

{% csrf_token %}
{% endif %}
{% if not user.is_authenticated %} {% endif %}
{% endblock 'content' %}