membersystem/project/urls.py

13 lines
273 B
Python
Raw Normal View History

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