First commit
This commit is contained in:
commit
440f5a7df4
1563 changed files with 217996 additions and 0 deletions
8
courses/urls.py
Normal file
8
courses/urls.py
Normal file
|
|
@ -0,0 +1,8 @@
|
|||
from django.urls import path
|
||||
from . import views
|
||||
|
||||
app_name = 'courses'
|
||||
urlpatterns = [
|
||||
path('', views.list, name='list'),
|
||||
path('<int:course_id>-<slug:course_name>/', views.show, name="show"),
|
||||
]
|
||||
Loading…
Add table
Add a link
Reference in a new issue