drupal2spip_lal/drupal2spip_lal/base/urls.py

8 lines
185 B
Python
Raw Normal View History

2020-07-16 17:44:31 +02:00
from django.urls import path
from django.views.generic import TemplateView
urlpatterns = [
path('', TemplateView.as_view(template_name='pages/home.html'),
name='home'),
]