Intranet app

This commit is contained in:
alazo 2018-07-29 11:38:02 +02:00
parent cf3cf1748b
commit faef1e2caa
12 changed files with 125 additions and 27 deletions

10
intranet/urls.py Normal file
View file

@ -0,0 +1,10 @@
"""eds URL Configuration
"""
from django.urls import path
from intranet import views
urlpatterns = [
path('list/', views.IntranetListView.as_view(), name='intranet-list'),
]