16 lines
213 B
Python
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,
|
|
)
|