This commit is contained in:
2026-05-18 23:25:22 -03:00
parent ec5f299c14
commit 35eec7d5e1

View File

@@ -4,7 +4,7 @@ from django.shortcuts import render
from django.http import HttpResponse from django.http import HttpResponse
def index(request): def index(request):
return render(request, 'index.html') return render(request, 'index.html',{'titulo:':'Django Polls App'})
def ola(request): def ola(request):
return HttpResponse("Olá !!") return HttpResponse("Olá !!")