This commit is contained in:
Administrator
2023-09-23 16:13:11 +03:00
commit 9e7fc7b4c1
605 changed files with 78660 additions and 0 deletions

13
web/urls.py Normal file
View File

@@ -0,0 +1,13 @@
from django.contrib import admin
from django.urls import path
from .views import *
urlpatterns = [
path(*WelcomeView.as_path()),
path(*ProjectsView.as_path()),
path(*SelectProject.as_path()),
path(*ProfileView.as_path()),
path(*ProfilePhoto.as_path()),
path(*LogoutView.as_path())
]