URLs in Django

URLs play an important role in Django to directing user requests to the correct views. The pattern which is defined in the URL file django URL dispatcher matches the incoming request to the specific views.

Here I can place URL file in the project folder.

Djnago Urls

We also create HTML template(thankyou.html) in the templates folder as we define its function in views. We get results than you after running the server as below.

Django Urls 2

You may also like...