add doctstings

This commit is contained in:
2025-09-08 11:58:02 +02:00
parent 2fd139de55
commit dd5bccf708
6 changed files with 45 additions and 0 deletions

View File

@@ -2,4 +2,9 @@ from django.shortcuts import render
def index(request):
"""
Main index of app, home page
:param request: None
:return: render and display homepage
"""
return render(request, 'index.html')