poulpe/shared/urls.py
2017-02-21 15:32:03 +01:00

7 lines
144 B
Python

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