Newer
Older
from django.http import HttpResponse
from django.urls import path, include

Bryan BRANCOTTE
committed
from django.contrib import admin
def blabla(request):
return HttpResponse("ee")
urlpatterns = [

Bryan BRANCOTTE
committed
path('admin/', admin.site.urls),
path('', TemplateView.as_view(template_name='test_app_1/mybase4.html'), name='home'),
path('themePasteur', TemplateView.as_view(template_name='test_app_1/mybasePasteur.html'), name='home'),