im/inventory/templates/inventory/index.html

33 lines
622 B
HTML
Raw Normal View History

2018-09-20 20:14:05 +00:00
{% extends 'inventory/base.html' %}
{% block content %}
2018-09-22 09:31:39 +00:00
<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
2021-07-04 19:05:00 +00:00
</p>
<p>
2018-09-22 09:31:39 +00:00
TODO: see expirted items below?
2021-07-04 19:05:00 +00:00
</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>
2018-09-20 20:14:05 +00:00
{% endblock %}