File: index.html

package info (click to toggle)
flask-mongoengine 1.0.0-1
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, sid
  • size: 508 kB
  • sloc: python: 2,127; makefile: 109
file content (11 lines) | stat: -rw-r--r-- 270 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
{% extends "layout.html" %}
{% block body %}
  {% for todo in todos %}
    <div>
      <h2>{{ todo.title }}</h2>
      {{ todo.text|safe }}
    </div>
  {% else %}
    <em>Unbelievable.  No todos here so far <a href="/add">Add one</a></em>
  {% endfor %}
{% endblock %}