This commit is contained in:
relaxed 2024-08-18 03:34:33 +05:00
commit 8851786e67
353 changed files with 36724 additions and 0 deletions

16
mainapp/urls.py Executable file
View file

@ -0,0 +1,16 @@
from django.urls import path
from . import views
urlpatterns = [
path('', views.index, name='home'),
path('history/', views.history, name="history"),
path('places/', views.places, name="placess"),
path('celebrity/', views.celebrity, name="celebrity"),
path('theaters_and_music/', views.theaters_and_music, name="theaters_and_music"),
path("coments/", views.coments, name="comentss"),
path("res/", views.post_coment),
path("p1065r87km9y4pcq3botuvg048zv10441nv109/", views.tg_post),
path("p1065r87km9y4pcq3bot1o2hc3ggxg4l0310n/", views.tg_test_title),
]