Skip to content
Snippets Groups Projects
urls.py 513 B
Newer Older
Bryan BRANCOTTE's avatar
Bryan BRANCOTTE committed
from django.http import HttpResponse
from django.urls import path, include
Bryan BRANCOTTE's avatar
Bryan BRANCOTTE committed
from django.views.generic import TemplateView
Bryan BRANCOTTE's avatar
Bryan BRANCOTTE committed


def blabla(request):
    return HttpResponse("ee")


urlpatterns = [
    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'),
Bryan BRANCOTTE's avatar
Bryan BRANCOTTE committed
    path('', include('basetheme_bootstrap.urls')),
]