DEV Community

Discussion on: 30 Days of Python 👨‍💻 - Day 25 - Web Development Extras

Collapse
 
drewgoodfellow profile image
DrewGoodfellow

I'm really enjoying the lessons, thank you. If I clone the github repo launch the page and click on one of the posts, I get the following error:

jinja2.exceptions.TemplateNotFound

jinja2.exceptions.TemplateNotFound: posts/first-post.html.html

Something is adding an extra .html onto the end of the post file. Do you know what might be causing this?

Best wishes.

Collapse
 
g3nark0 profile image
Joel Rivera-Pintado

I removed the ".html" on the show_post function and it worked:
return render_template(f'posts/{post_name}')