10 lines
190 B
Python
10 lines
190 B
Python
from django.urls import path
|
|
|
|
from . import views
|
|
|
|
app_name = "subjects"
|
|
|
|
urlpatterns = [
|
|
path("", views.main_page, name="list"),
|
|
path("new/", views.create_subject, name="create")
|
|
]
|