Based on my current understanding of Django, this is how a user request is responded to. User requests a page Request reaches Request Middlewares, which could manipulate or answer the request The _URLConf_finds the related View using urls.py View Middlewares are called, which could manipulate or answer the request The view function is invoked The view could optionally access data through models
Categories