Episode

Implementing routes in Django [17 of 24] | Beginner's Series to: Django

All web frameworks need to know how to route a user request to the appropriate code to execute, generically called routes. Routes are setup in Django through URLconf files and paths. We'll see how to create a URLconf for an app and project, and see how to register different routes.

Useful Links:

Python