kopia lustrzana https://github.com/djpeacher/django-projects
feat(recipes): README
rodzic
17d57a807b
commit
a1368c8ac0
|
@ -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`.
|
|
@ -3,11 +3,25 @@
|
||||||
{% block index_header %}
|
{% block index_header %}
|
||||||
<header>
|
<header>
|
||||||
<h1>Recipes</h1>
|
<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>
|
</header>
|
||||||
{% endblock %}
|
{% endblock %}
|
||||||
|
|
||||||
{% block index_main %}
|
{% block index_main %}
|
||||||
<p>TK TK TK</p>
|
<h2>Features</h2>
|
||||||
<a href="{% url 'recipe-list' %}" class="button">Get Started →</a>
|
<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 %}
|
{% endblock %}
|
Ładowanie…
Reference in New Issue