9 lines
162 B
Python
9 lines
162 B
Python
from django.urls import path
|
|
|
|
import teams.views
|
|
|
|
app_name = 'teams'
|
|
urlpatterns = [
|
|
path('settings/teams/', teams.views.TeamsView.as_view(), name='list'),
|
|
]
|