In Chapter 1 you learned about the core building blocks in Django, inclduing what are views, models, and urls. In this chapter, you’ll learn more about Django urls, which are the entry point into a Django application workflow. You’ll learn how to create complex url regular expressions, how to use url values in view methods and templates, how to structure and manage urls, and how to name urls.
After urls, Django views represent the next step in almost all Django workflows, where views are charged with inspecting requests, executing business logic, querying a database and ...