Commit 0eca8d34 authored by exclamationpoints's avatar exclamationpoints

Added about app. Removed redundant files and comments.

parent 1a6a372a
from django.contrib import admin
# Register your models here.
from django.apps import AppConfig
class AboutConfig(AppConfig):
default_auto_field = 'django.db.models.BigAutoField'
name = 'about'
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 = "about"
\ 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("""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.
<br> <br>
According to my Spotify Wrapped 2023, 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.""")
\ No newline at end of file
......@@ -2,7 +2,6 @@ from django.shortcuts import render
# Create your views here.
# appname/views.py
from django.http import HttpResponse
def index(request):
......
......@@ -41,7 +41,8 @@ INSTALLED_APPS = [
'django.contrib.sessions',
'django.contrib.messages',
'django.contrib.staticfiles',
'homepage'
'homepage',
'about'
]
MIDDLEWARE = [
......
......@@ -18,5 +18,6 @@ from django.urls import include, path
urlpatterns = [
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"))
]
\ No newline at end of file
from django.contrib import admin
from django.urls import include, path
urlpatterns = [
path('<appname>/', include('<appname>.urls', namespace="<appname>")),
path('admin/', admin.site.urls),
]
\ 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