Skip to content

pages

session_manager.views.pages

Views for the session manager app.

Functions

index(request)

View that renders the index/home page.

Source code in session_manager/views/pages.py
@login_required
def index(request: HttpRequest) -> HttpResponse:
    """View that renders the index/home page."""
    return render(request=request, template_name="session_manager/index.html")