Initial commit
This commit is contained in:
commit
a961619d08
21 changed files with 413 additions and 0 deletions
10
common/urls.py
Normal file
10
common/urls.py
Normal file
|
|
@ -0,0 +1,10 @@
|
|||
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"),
|
||||
]
|
||||
Loading…
Add table
Add a link
Reference in a new issue