From 07190956483c32a2bee97b69385fde4e58bbcfa9 Mon Sep 17 00:00:00 2001 From: Akash Kothawale Date: Mon, 16 Jun 2014 00:16:27 -0700 Subject: [PATCH] base.html instead of base.py as it is a Jinja template --- Large-app-how-to.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Large-app-how-to.md b/Large-app-how-to.md index de4c9a0..74e6312 100644 --- a/Large-app-how-to.md +++ b/Large-app-how-to.md @@ -334,7 +334,7 @@ Jinja is integrated within Flask. One of the great features of Jinja is the inhe ``` -Now we won't have to redefine our html structure anymore, and any modification done on `base.py` will be visible on all your child templates. Here is the `/app/templates/users/register.html` template (It's a good habit to use the view name for the template file name). +Now we won't have to redefine our html structure anymore, and any modification done on `base.html` will be visible on all your child templates. Here is the `/app/templates/users/register.html` template (It's a good habit to use the view name for the template file name). ```jinja {% extends "base.html" %}