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:
parent
68acfc8875
commit
ed3db9b01d
1 changed files with 1 additions and 1 deletions
|
@ -23,7 +23,7 @@ def dashboard(context):
|
|||
dashboard_html = ""
|
||||
|
||||
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"])
|
||||
|
||||
|
|
Loading…
Reference in a new issue