source: MuiscOrganizationSystem/urls.py@ 75ea229

Last change on this file since 75ea229 was d7662b5, checked in by ManuelTrajcev <manueltrajcev7@…>, 3 weeks ago

init

  • Property mode set to 100644
File size: 826 bytes
Line 
1"""
2URL configuration for MuiscOrganizationSystem project.
3
4The `urlpatterns` list routes URLs to views. For more information please see:
5 https://docs.djangoproject.com/en/5.1/topics/http/urls/
6Examples:
7Function views
8 1. Add an import: from my_app import views
9 2. Add a URL to urlpatterns: path('', views.home, name='home')
10Class-based views
11 1. Add an import: from other_app.views import Home
12 2. Add a URL to urlpatterns: path('', Home.as_view(), name='home')
13Including another URLconf
14 1. Import the include() function: from django.urls import include, path
15 2. Add a URL to urlpatterns: path('blog/', include('blog.urls'))
16"""
17
18from django.contrib import admin
19from django.urls import path, include
20
21urlpatterns = [
22 path("admin/", admin.site.urls),
23 path('', include('music.urls')),
24]
Note: See TracBrowser for help on using the repository browser.