Updated file input, Updated heading spacing globally, Fixed lscom downloads, Updated contact info

Update .gitignore, home.yml, and 13 more files...
This commit is contained in:
2025-09-13 16:19:20 +02:00
parent ed2e56cf96
commit 2eb9d5c7a5
15 changed files with 343 additions and 217 deletions

View File

@@ -2,7 +2,8 @@ from flask import render_template
def render_file_input(input_id: str, multiple: bool, accept: str = None,
upload_button: bool = False, clear_button: bool = False, user_lang: str = "") -> str:
upload_button: bool = False, clear_button: bool = False,
user_lang: str = "", text_override: str = "") -> str:
return render_template(
"elements/file-input.jinja",
file_input_id=input_id,
@@ -11,4 +12,5 @@ def render_file_input(input_id: str, multiple: bool, accept: str = None,
file_upload_button=upload_button,
file_clear_button=clear_button,
user_lang=user_lang,
text_override=text_override,
)