11 lines
436 B
Python
11 lines
436 B
Python
from django.contrib import admin
|
|
from django.urls import path
|
|
from django.views.generic import TemplateView
|
|
|
|
urlpatterns = [
|
|
path("admin/", admin.site.urls),
|
|
path("", TemplateView.as_view(template_name="index.html"), name="home"),
|
|
path("presentation/", TemplateView.as_view(template_name="presentation.html"), name="presentation"),
|
|
path("contact/", TemplateView.as_view(template_name="contact.html"), name="contact"),
|
|
]
|