Inicio del Django y base de datos

This commit is contained in:
adrigongv23 2026-02-17 13:39:49 +01:00
parent 57494f02e5
commit 0e0c8d7d1b
66 changed files with 647 additions and 69 deletions

View file

@ -0,0 +1,6 @@
from django.shortcuts import render
from django.http import HttpResponse
def home(request):
# Esta función es la que decide qué mostrar cuando alguien entra a la web
return HttpResponse("<h1>¡Bienvenido a la Plataforma de Gades! 🏎️💨</h1><p>Sistema de Telemetría y Gestión v1.0</p>")