{% extends "base.html" %} {% block title %}Search – Nutrition Tracker{% endblock %} {% block content %}

πŸ” Search

{% if q %}βœ• Clear{% endif %}

πŸ₯˜ Foods & Recipes {% if q %} {{ food_total }} result{{ "s" if food_total != 1 else "" }} for "{{ q }}" {% else %} {{ food_total }} total {% endif %}

{% if foods | length > 0 %} {% if has_prev or has_next_food %} {% endif %} {% else %}

{% if q %}No foods or recipes matching "{{ q }}".{% else %}No foods defined yet.{% endif %}

{% endif %}

πŸƒ Exercises {% if q %} {{ ex_total }} result{{ "s" if ex_total != 1 else "" }} for "{{ q }}" {% else %} {{ ex_total }} total {% endif %}

{% if exercises | length > 0 %} {% if has_prev or has_next_ex %} {% endif %} {% else %}

{% if q %}No exercises matching "{{ q }}".{% else %}No exercises defined yet.{% endif %}

{% endif %}
{% endblock %} {% block scripts %} {% endblock %}