Django URLs & Views
001 What are URLs & Views In networking, a router looks at the destination IP or prefix and decides where to send the packet. In Django, the URL dispatcher looks at the requested path (e.g. /customer/123) and decides which view function should handle it. On the other hand, view handles the request and sends a […]
Django URLs & Views Read More »