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

9 lines
220 B
Python

from annoying.decorators import render_to
from django.http import HttpRequest
@render_to("demonstration/index.html")
def view_index(request: HttpRequest) -> dict:
"""Show the list of all sections."""
return {}