1
0
Fork 0
Rust-Rocket-Project/views/tasks/index.html.tera
2021-07-08 23:29:40 +02:00

10 lines
No EOL
260 B
Text

{% 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 %}