feat(recipes): README

main
Jonathan Peacher 2023-06-22 12:46:14 -05:00
rodzic 17d57a807b
commit a1368c8ac0
Nie znaleziono w bazie danych klucza dla tego podpisu
2 zmienionych plików z 29 dodań i 4 usunięć

11
recipes/README.md 100644
Wyświetl plik

@ -0,0 +1,11 @@
# Recipes
Manage recipes and generate shopping list!
## Features
- Manage recipes and their ingredients.
- Manage ingredient units and aisles.
- Generate ingredient shopping list!
- Grouped by unique `name-unit-aisle` across selected recipes.
- Ex. `2 cups rice` and `3 cups rice` will be combined into `5 cups rice`.

Wyświetl plik

@ -3,11 +3,25 @@
{% block index_header %}
<header>
<h1>Recipes</h1>
<p>TK TK TK</p>
<p>Manage recipes and generate shopping list!</p>
<a href="{% url 'recipe-list' %}" class="button">Get Started →</a>
</header>
{% endblock %}
{% block index_main %}
<p>TK TK TK</p>
<a href="{% url 'recipe-list' %}" class="button">Get Started →</a>
<h2>Features</h2>
<ul>
<li>Manage recipes and their ingredients.</li>
<li>Manage ingredient units and aisles.</li>
<li>
Generate ingredient shopping list!
<ul>
<li>Grouped by unique <code>name-unit-aisle</code> across selected recipes.</li>
<li>
Ex. <code>2 cups rice</code> and <code>3 cups rice</code> will be combined into
<code>5 cups rice</code>.
</li>
</ul>
</li>
</ul>
{% endblock %}