poulpe/shared/urls.py
2017-05-09 22:56:20 +02:00

7 lines
145 B
Python

from django.conf.urls import url
from .views import Home
app_name = 'shared'
urlpatterns = [
url(r'^$', Home.as_view(), name='home'),
]