Product List
Home
{% if current_user.is_authenticated %}
Order
{% endif %} {% if not current_user.admin %}
About
{% endif %}
Resources
{% if current_user.is_authenticated %}
Update Information
Logout
{% endif %} {% if not current_user.is_authenticated %}
Login
{% endif %} {% if current_user.admin %}
Admin
{% endif %}
Please select a product:
{% for product in products %}
{{product.product}}
{% endfor %}
{% for prod in products %}
Item ID: {{prod.id}}
Item Name: {{prod.product}}
Item Quantity: {{prod.quantity}}
{% endfor %}