11 lines
228 B
Python
11 lines
228 B
Python
# -*- encoding: utf-8 -*-
|
|
|
|
from django.urls import path
|
|
from django.contrib.auth.decorators import login_required
|
|
|
|
from .views import IndexView
|
|
|
|
urlpatterns = [
|
|
path("", login_required(IndexView.as_view()), name="index"),
|
|
]
|