Start on the fridge frontend

Create list overview without styling
Start on editer of fridge
This commit is contained in:
Tim
2022-01-02 01:01:00 +01:00
parent 60577f15fe
commit 725fa47c6d
5 changed files with 85 additions and 2 deletions

View File

@ -0,0 +1,8 @@
{% extends "base/base.html.twig" %}
{% block body %}
Fridges: <br>
{% for fridge in fridges %}
<a href="{{ path('fridge_single', {'fridge': fridge.id}) }}">{{ fridge.name }}</a> <br>
{% endfor %}
{% endblock %}

View File

@ -0,0 +1,5 @@
{% extends "base/base.html.twig" %}
{% block body %}
{{ form(form) }}
{% endblock %}