You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
17 lines
581 B
HTML
17 lines
581 B
HTML
{% extends 'base.html' %}
|
|
|
|
{% block content %}
|
|
<h1>{% block title %} Welcome to FlaskTodo {% endblock %}</h1>
|
|
{% for list, items in lists.items() %}
|
|
<div class="card" style="width: 18rem; margin-bottom: 50px;">
|
|
<div class="card-header">
|
|
<h3>{{ list }}</h3>
|
|
</div>
|
|
<ul class="list-group list-group-flush">
|
|
{% for item in items %}
|
|
<li class="list-group-item">{{ item['content'] }}</li>
|
|
{% endfor %}
|
|
</ul>
|
|
</div>
|
|
{% endfor %}
|
|
{% endblock %} |