{% extends "base.html" %} {% load static %} {% block head_extra %} {% endblock %} {% block content %}

Search Food & Drinks

{% if query %}
{% if results %}

{{ results|length }} result{{ results|length|pluralize }}

{% for product in results %}
{% if product.image_url %} {% endif %}
{{ product.product_name }}
{% if product.brands %}{{ product.brands }}{% endif %} {% if product.categories %} · {{ product.categories|join:", " }}{% endif %}
{% if product.nutriments.calories %}
{{ product.nutriments.calories }} kcal {% if product.nutriments.protein %}P {{ product.nutriments.protein }}g{% endif %} {% if product.nutriments.fat %}F {{ product.nutriments.fat }}g{% endif %} {% if product.nutriments.carbohydrates %}C {{ product.nutriments.carbohydrates }}g{% endif %}
{% endif %}
{% csrf_token %}
{% endfor %} {% else %}
No products found matching your search.
{% endif %}
{% else %}

Enter a food or drink name to search via Open Food Facts.

{% endif %}
{% endblock %}