Add documentation and source
Added documentation, source and extra files.
This commit is contained in:
8
source/templating/demonstration/views/index.py
Normal file
8
source/templating/demonstration/views/index.py
Normal file
@ -0,0 +1,8 @@
|
||||
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 {}
|
Reference in New Issue
Block a user