Skip to content Skip to sidebar Skip to footer

Child Template Isn't Rendering

I have a layout template and a child template. However, none of the extra information from the child template is showing up. Why isn't the information in the child template being

Solution 1:

You need to render child.html, not layout.html. Child will extend layout, but the way you've written it, only layout will be rendered.

return render_template('child.html')

Post a Comment for "Child Template Isn't Rendering"