fix: Updates section header level on dashboard

Changes section headers from <h2> to <h3> for better hierarchy
and improved visual clarity in the dashboard interface.
This commit is contained in:
Kumi 2024-11-28 17:29:46 +01:00
parent 68acfc8875
commit ed3db9b01d
Signed by: kumi
GPG key ID: ECBCC9082395383F

View file

@ -23,7 +23,7 @@ def dashboard(context):
dashboard_html = "" dashboard_html = ""
for section in sections: for section in sections:
dashboard_html += f"<h2>{section.name}</h2>" dashboard_html += f"<h3>{section.name}</h3>"
dashboard_html += section.get_html(context["request"]) dashboard_html += section.get_html(context["request"])