Add contact app

This commit is contained in:
Nyymix 2025-02-02 20:27:04 +02:00
parent 467f2396ca
commit 875c2c63d5
12 changed files with 43 additions and 2 deletions

View file

@ -5,6 +5,7 @@ from django.urls import include, path
urlpatterns = [
path('admin/', admin.site.urls),
path('contact/', include(('contact.urls', 'contact'), namespace='contact')),
path('', include(('gallery.urls', 'gallery'), namespace='gallery')),
]