Commit cd3cd1bd authored by Migs Atienza's avatar Migs Atienza

About Page Done

parent 8b041b48
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')
]
app_name = "about"
\ No newline at end of file
from django.shortcuts import render
from django.http import HttpResponse
def index(request):
return HttpResponse("About Migs Atienza<br/>"
"A sophomore in Ateneo De Manila University that aims to take up Game Development<br/>"
"<br/>"
"Started paying attention to music back when he would binge a lot of anime, so his <br/>"
"music tastes are primarily composed of J-Pop")
# Create your views here.
......@@ -41,6 +41,7 @@ INSTALLED_APPS = [
'django.contrib.messages',
'django.contrib.staticfiles',
'homepage',
'about',
]
MIDDLEWARE = [
......
......@@ -18,6 +18,7 @@ from django.urls import path, include
urlpatterns = [
path('homepage/', include('homepage.urls', namespace="homepage")),
path('about/', include('about.urls', namespace="about")),
path('admin/', admin.site.urls),
]
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