Files
cursopython2023/aula207_ola_django/home/views.py

16 lines
213 B
Python

from django.shortcuts import render
def home(request):
print('home')
context = {
'text': 'Olá home'
}
return render(
request,
'home/index.html',
context,
)