Commit ae27065d authored by Nicholo Pardines's avatar Nicholo Pardines

Fixed contact views.py and moved apps to the root of the project

parent 0bcfdfd4
...@@ -3,4 +3,4 @@ from django.http import HttpResponse ...@@ -3,4 +3,4 @@ from django.http import HttpResponse
# Create your views here. # Create your views here.
def contactInfo(request): def contactInfo(request):
return("Contact me here: 09778570806") return HttpResponse("Contact me here: 09778570806")
\ No newline at end of file \ No newline at end of file
...@@ -14,8 +14,11 @@ Including another URLconf ...@@ -14,8 +14,11 @@ Including another URLconf
2. Add a URL to urlpatterns: path('blog/', include('blog.urls')) 2. Add a URL to urlpatterns: path('blog/', include('blog.urls'))
""" """
from django.contrib import admin from django.contrib import admin
from django.urls import path from django.urls import path, include
urlpatterns = [ urlpatterns = [
path('admin/', admin.site.urls), path('admin/', admin.site.urls),
path('homepage/', include('homepage.urls', namespace="homepage")),
path('about/', include('about.urls', namespace="about")),
path('contact/', include('contact.urls', namespace="contact")),
] ]
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment