An even more educational version of the Bandolier for Learn JS the Hard Way.
https://learnjsthehardway.com/
29 lines
365 B
29 lines
365 B
{% include "./header.html" %}
|
|
|
|
<script>
|
|
</script>
|
|
|
|
<style>
|
|
.disabled {
|
|
display: none;
|
|
}
|
|
|
|
.enabled {
|
|
display: none;
|
|
}
|
|
</style>
|
|
|
|
<h1>Your TODOs</h1>
|
|
|
|
<p>Welcome {{ name }}, here's your TODOs</p>
|
|
|
|
<ol>
|
|
{% for todo in todo_list %}
|
|
<li>{{ todo.task }}</li>
|
|
{% else %}
|
|
<li>No TODO Items</li>
|
|
{% endfor %}
|
|
</ol>
|
|
|
|
|
|
{% include "./footer.html" %}
|
|
|