Implemented file drop inputs, Preparing more tools

Update app.py, excel-password-remover.yml, and 30 more files...
This commit is contained in:
2025-02-25 23:53:43 +01:00
parent ec905b4735
commit 65db2dea5a
32 changed files with 422 additions and 24 deletions

View File

@@ -0,0 +1,22 @@
<section id="{{ applet_data.id }}-eula">
{{ render_h2(l10n("eula.long", "commons", user_lang)) }}
{{ render_paragraph(l10n("eula.1", applet_data.id, user_lang)) }}
{{ render_paragraph(l10n("eula.2", applet_data.id, user_lang)) }}
{{ render_paragraph(l10n("eula.3", applet_data.id, user_lang)) }}
{{ render_paragraph(l10n("eula.4", applet_data.id, user_lang)) }}
</section>
<section id="{{ applet_data.id }}-input">
{{ render_h2(l10n("file.selection.title", applet_data.id, user_lang)) }}
<p>123</p>
</section>
<section id="{{ applet_data.id }}-details">
{{ render_h2(l10n("details.title", applet_data.id, user_lang)) }}
<p>123</p>
</section>
<section id="{{ applet_data.id }}-licenses">
{{ render_h2(l10n("licenses.title", applet_data.id, user_lang)) }}
<p>123</p>
</section>

View File

@@ -0,0 +1,5 @@
{{ render_h2(l10n("upload.title", "commons", user_lang)) }}
{{ render_file_input("test-input", true, None, true, true) }}

View File