2023-12-09 09:35:08 +01:00

6 lines
206 B
Python

from django.shortcuts import render, HttpResponse
from django.utils.translation import gettext_lazy as _
# Create your views here.
def home(request):
welcome = _("hola")
return HttpResponse(welcome)