Files
Steve Kossouho e3ebf6bf4f Add documentation and source
Added documentation, source and extra files.
2025-07-02 20:26:50 +02:00

10 lines
271 B
Python

from annoying.decorators import render_to
from django.conf import settings
from django.http import HttpRequest
@render_to("birds/translation-page.html")
def view_translation_page(request: HttpRequest) -> dict:
print(settings.LANGUAGES)
return {"bird_count": 1}