{% extends 'base.html' %} {% from 'bootstrap5/form.html' import render_form %} {% block title %} Data Input {% endblock %} {% block content %}

Input Data you want to store

{% if success %}

Thank you {{ updater_name | safe }}, Data Updated Successfully

{% endif %}
{{ render_form(form) }}

Current Runs

{{ current_data | safe }}

Previous Runs

{{ wine_data | safe }}
{% endblock %}