blob: 359a1c8664ef16c196cb0d8c8db47d81623c4c32 (
plain)
1
2
3
4
5
6
7
8
|
from django.shortcuts import render
from thatcomputerscientist.utils import i18npatterns
def home(request):
LANGUAGE_CODE = i18npatterns(request.LANGUAGE_CODE)
return render(request, f"{LANGUAGE_CODE}/core/home.html")
|