Notice: This page requires JavaScript to function properly.
Please enable JavaScript in your browser settings or update your browser.
Apprendre Render "Hi" | The First Application
Django: Build Your First Website

bookRender "Hi"

In this chapter, we will be working with two files, urls.py and views.py.

  • In views.py, we will write a function that will display a page in the browser with the message "Hello, world!";

  • In the urls.py file, we will create a URL address for our page.

We have the implemented hi view in views.py file.

from django.http import HttpResponse
from django.shortcuts import render
        
# Create your views here.    
def hi(request):
    return HttpResponse("<h1>Hi</h1>")

Import this view to the urls.py and add path to urlpatterns.

from django.urls import path
from .views import hi
        
urlpatterns = [
    path('', hi)
]

Video Explanation

question mark

In which file do you need to write URLs?

Select the correct answer

Tout était clair ?

Comment pouvons-nous l'améliorer ?

Merci pour vos commentaires !

Section 2. Chapitre 4

Demandez à l'IA

expand

Demandez à l'IA

ChatGPT

Posez n'importe quelle question ou essayez l'une des questions suggérées pour commencer notre discussion

Awesome!

Completion rate improved to 4

bookRender "Hi"

Glissez pour afficher le menu

In this chapter, we will be working with two files, urls.py and views.py.

  • In views.py, we will write a function that will display a page in the browser with the message "Hello, world!";

  • In the urls.py file, we will create a URL address for our page.

We have the implemented hi view in views.py file.

from django.http import HttpResponse
from django.shortcuts import render
        
# Create your views here.    
def hi(request):
    return HttpResponse("<h1>Hi</h1>")

Import this view to the urls.py and add path to urlpatterns.

from django.urls import path
from .views import hi
        
urlpatterns = [
    path('', hi)
]

Video Explanation

question mark

In which file do you need to write URLs?

Select the correct answer

Tout était clair ?

Comment pouvons-nous l'améliorer ?

Merci pour vos commentaires !

Section 2. Chapitre 4
some-alt