1st commit

This commit is contained in:
2026-05-14 23:31:30 -03:00
commit a143e17df4
28 changed files with 249 additions and 0 deletions

10
polls/views.py Normal file
View File

@@ -0,0 +1,10 @@
from django.shortcuts import render
# Create your views here.
from django.http import HttpResponse
def index(request):
return render(request, 'index.html')
def ola(request):
return HttpResponse("Olá !!")