Add intranet app

This commit is contained in:
Claude Paroz 2018-08-16 10:50:00 +02:00
parent c96bd0d0db
commit 9773957baf
11 changed files with 167 additions and 1 deletions

7
intranet/urls.py Normal file
View file

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