diff options
| author | Bobby <[email protected]> | 2024-10-16 15:19:52 -0400 |
|---|---|---|
| committer | Bobby <[email protected]> | 2024-10-16 15:19:52 -0400 |
| commit | e71f872fd9220a4dfb794e1c91d8e8087002b937 (patch) | |
| tree | f9f9ed1638012365100b7ba3ddad3541a1fc0a99 /apps | |
| parent | cf21403a416a2a0b21acaa3e27bc32a9618b859c (diff) | |
| download | thatcomputerscientist-e71f872fd9220a4dfb794e1c91d8e8087002b937.tar.xz thatcomputerscientist-e71f872fd9220a4dfb794e1c91d8e8087002b937.zip | |
i made the header and something extra
Diffstat (limited to 'apps')
| -rw-r--r-- | apps/core/views.py | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/apps/core/views.py b/apps/core/views.py index 359a1c86..90554d10 100644 --- a/apps/core/views.py +++ b/apps/core/views.py @@ -3,6 +3,10 @@ from thatcomputerscientist.utils import i18npatterns def home(request): + META = { + "title": "Home", + } LANGUAGE_CODE = i18npatterns(request.LANGUAGE_CODE) + request.meta.update(META) return render(request, f"{LANGUAGE_CODE}/core/home.html") |
