Commit 48cd469e authored by exclamationpoints's avatar exclamationpoints

Added contact app. Fixed wrong info.

parent 0eca8d34
...@@ -7,5 +7,5 @@ def index(request): ...@@ -7,5 +7,5 @@ def index(request):
return HttpResponse("""My music taste varies a lot, depending on what I\'m feeling. I listen to very different things return HttpResponse("""My music taste varies a lot, depending on what I\'m feeling. I listen to very different things
whether it be pop girls, pop rock, Japanese rock, K-pop, indie OPM, or alternative Indie. whether it be pop girls, pop rock, Japanese rock, K-pop, indie OPM, or alternative Indie.
<br> <br> <br> <br>
According to my Spotify Wrapped 2023, my top artists were AJR, Hobo Johnson, Ben&Ben, TWICE, and According to my Spotify Wrapped 2022, my top artists were AJR, Hobo Johnson, Ben&Ben, TWICE, and
Panic! At The Disco. That said, right now I'm binging songs from Adele, NewJeans, and imase.""") Panic! At The Disco. That said, right now I'm binging songs from Adele, NewJeans, and imase.""")
\ No newline at end of file
from django.contrib import admin
# Register your models here.
from django.apps import AppConfig
class ContactConfig(AppConfig):
default_auto_field = 'django.db.models.BigAutoField'
name = 'contact'
from django.db import models
# Create your models here.
from django.test import TestCase
# Create your tests here.
from django.urls import path
from .views import index
urlpatterns = [
path('', index, name='index'),
]
# This might be needed, depending on your Django version
app_name = "contact"
\ No newline at end of file
from django.shortcuts import render
# Create your views here.
from django.http import HttpResponse
def index(request):
return HttpResponse("""Phone number: 0999 999 9999
<br>
Email address: ian@google.com
<br>
Home address: 1600 Pennsylvania Avenue NW, Washington, D.C., United States of America
""")
\ No newline at end of file
...@@ -42,7 +42,8 @@ INSTALLED_APPS = [ ...@@ -42,7 +42,8 @@ INSTALLED_APPS = [
'django.contrib.messages', 'django.contrib.messages',
'django.contrib.staticfiles', 'django.contrib.staticfiles',
'homepage', 'homepage',
'about' 'about',
'contact'
] ]
MIDDLEWARE = [ MIDDLEWARE = [
......
...@@ -19,5 +19,6 @@ from django.urls import include, path ...@@ -19,5 +19,6 @@ from django.urls import include, path
urlpatterns = [ urlpatterns = [
path('admin/', admin.site.urls), path('admin/', admin.site.urls),
path('homepage/', include('homepage.urls', namespace="homepage")), path('homepage/', include('homepage.urls', namespace="homepage")),
path('about/', include('about.urls', namespace="about")) path('about/', include('about.urls', namespace="about")),
path('contact/', include('contact.urls', namespace="contact"))
] ]
\ No newline at end of file
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