=================== List Todos Template =================== We'll convert another view to use a view template with a master template. In the process, we'll get our first real use of the debugger by setting a breakpoint in the template. Steps ===== #. Let's make a template in ``templates/list_todos.html``: .. literalinclude:: templates/list_todos.html :caption: templates/list_todos.html in List Todos Templates :language: jinja #. In ``app.py``, change the ``list_todos``, making it much simpler: it just hands data to the template: .. code-block:: python def list_todos(): todos = Todo.list() return render_template('list_todos.html', page_title='List Todos', todos=todos) *Note: The page_title mistake is intentional.* #. Next, let's do the same for ``show_todo``. First, create ``templates/show_todo.html``: .. literalinclude:: templates/show_todo.html :caption: templates/show_todo.html in List Todos Templates :language: jinja #. In ``app.py``, change the ``show_todo``, also making it much simpler: it just hands data to the template: .. code-block:: python def show_todo(todo_id): todo = Todo.get_id(todo_id) return render_template('show_todo.html', title='Todo ' + str(todo_id), todo=todo) *Note: PyCharm Professional autocompletes the template filename from the ``templates`` directory, which is very helpful.* #. In your browser, visit the ``List Todos`` page. We aren't getting a ``title`` displayed. Let's debug it. #. Open ``templates/layout.html`` and click in the left margin on the second line, where ``