Implement recipes app in beta version #17

Merged
Benjamin merged 20 commits from recipes into master 2023-03-25 12:00:44 +00:00
2 changed files with 4 additions and 0 deletions
Showing only changes of commit 62b4865a26 - Show all commits

View file

@ -36,6 +36,7 @@
{% endif %}
</ul>
<ul>
<li><a href="{% url 'recipes' %}">Recipes</a></li>
<li><a href="https://benjamin.stadlbauer.wien/git/Barn/django-project">Source code on Forgejo</a></li>
</ul>
</nav>

View file

@ -20,4 +20,7 @@
{% block title %}Barn{% endblock %}
{% block main %}
<h1>Barn</h1>
<ul>
<li><h2><a href="{% url 'recipes' %}">Recipes</a></h2></li>
</ul>
{% endblock %}