Skip to content

web

#38: Forms for Your Flask App

From small contact forms to whole applications for data collection, forms are an important part of most web applications. Let us look how we can work with forms in Flask.

#36: Routing in Flask

URLs are important for web applications. They are like an API for your application and search engines can use them to rank your site. Flask gives you a lot of flexibility to map URLs to your view functions.

#35: Shared Layouts in Jinja

Our web application will be a maintenance nightmare when all our pages contain the full layout of our site. Luckily for us, Jinja offers a simple solution for this problem called template inheritance.