Commit 04d8ae03 authored by Jose Gabriel L. Salas's avatar Jose Gabriel L. Salas

added the about page which contains info about coder and music taste

parents
Jose Gabriel L. Salas, 215180, BS CS, F
Lab 01: Song Library
02/13/2023
"This lab, which is an application of basic source code management and an implementation of Django, was truthfully completed by me. <sgd> Jose Gabriel L. Salas, 02/13/2023"
\ No newline at end of file
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.http import HttpResponse
def index(request):
return HttpResponse('I am Gab Salas, I generally like kpop, pop, and opm')
\ 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