some changes

This commit is contained in:
Basyrov Rustam
2025-06-03 22:19:57 +03:00
parent 49808d7bc5
commit 8bea592155
3 changed files with 12 additions and 2 deletions

7
polls/urls.py Normal file
View File

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

View File

@@ -1,3 +1,5 @@
from django.shortcuts import render
from django.http import HttpResponse
# Create your views here.
def index(request):
return HttpResponse("Hello, world. You're at the polls index.")