im/inventory/templates/inventory/index.html

33 lines
622 B
HTML

{% extends 'inventory/base.html' %}
{% block content %}
<h2>Welcome to your pantry inventory.</h2>
<p>
Use the navbar on top to start doing things.
</p>
<p>
Consume: Mark pantry items as consumed.
</p>
<p>
Shopping list: See items you need to restock
</p>
<p>
Expirations: See items that will expire soon
</p>
<p>
TODO: add items to your shopping list below
</p>
<p>
TODO: see expirted items below?
</p>
<p>
TODO: when no categories are found, show getting started, otherwise nit.
You will probably want to add some default Categories and Units
run TODO: https://pypi.org/project/django-smuggler/
</p>
{% endblock %}