8 lines
129 B
Python
8 lines
129 B
Python
|
|
from django.urls import path
|
||
|
|
|
||
|
|
from . import views
|
||
|
|
|
||
|
|
urlpatterns = [
|
||
|
|
path('', views.aufgaben_liste, name='aufgaben_global'),
|
||
|
|
]
|