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

7
polls/urls.py Normal file
View File

@@ -0,0 +1,7 @@
from django.urls import path
from polls import views
urlpatterns = [
path('index', views.index, name='index'),
path('ola', views.ola, name='ola')
]