further refinement of roi calculator

This commit is contained in:
Tobias Brunner 2025-07-22 17:30:37 +02:00
parent 6f6c80480f
commit 493d45bb5d
Signed by: tobru
SSH key fingerprint: SHA256:kOXg1R6c11XW3/Pt9dbLdQvOJGFAy+B2K6v6PtRWBGQ
6 changed files with 962 additions and 565 deletions

View file

@ -53,3 +53,16 @@ def csp_roi_calculator(request):
}
return render(request, "calculator/csp_roi_calculator.html", context)
def roi_calculator_help(request):
"""
ROI Calculator Help page - Shows detailed information about investment models
This page is publicly accessible without password protection
"""
context = {
"page_title": "ROI Calculator Help - Investment Models",
"page_description": "Understand Servala's Loan and Direct Investment models with detailed explanations and examples",
}
return render(request, "calculator/roi_calculator_help.html", context)