Add documentation and source

Added documentation, source and extra files.
This commit is contained in:
2025-07-02 20:26:50 +02:00
parent 4fc1d36a10
commit e3ebf6bf4f
295 changed files with 24986 additions and 0 deletions

View File

@ -0,0 +1,9 @@
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}