membersystem/project/urls.py

13 lines
273 B
Python
Raw Normal View History

2018-06-23 15:01:13 +02:00
"""URLs for the membersystem"""
from django.contrib import admin
2019-08-31 20:46:49 +02:00
from django.urls import include
from django.urls import path
2018-06-23 13:00:26 +02:00
2019-08-31 20:46:49 +02:00
from . import views
2018-06-23 13:00:26 +02:00
urlpatterns = [
2019-08-31 20:46:49 +02:00
path('', views.index),
path("users/", include("users.urls")),
2018-06-23 13:00:26 +02:00
path('admin/', admin.site.urls),
]