Commit 8ef8cedc authored by Rafa Mendoza's avatar Rafa Mendoza

adding about page

parent 5e68bfb4
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"
from django.http import HttpResponse
def index(request):
return HttpResponse('I am Rafa Mendoza. As the youngest child, I always relied on my siblings, even in terms of music. My music preferences include anything that my brothers and sister listen to.')
# Create your views here.
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