1
0
Fork 0

Add template

This commit is contained in:
Florian RICHER 2021-07-08 23:29:40 +02:00
parent 4bee273216
commit 2d1d5b66a9
8 changed files with 727 additions and 44 deletions

View file

@ -0,0 +1,10 @@
{% extends "layout" %}
{% block content %}
<h3>Here are your items:</h3>
<ul>
{% for task in tasks %}
<li>{{ task.id }} {{ task.description }} {{ task.completed }}</li>
{% endfor %}
</ul>
{% endblock content %}