Files
Web-NibblePoker/templates/applets/excel-password-remover.jinja
Herwin Bozet 0a02a1e56d Revamped site's common scripts, Many pages slightly broken
Update commons.yml, excel-password-remover.yml, and 31 more files...
2025-03-01 07:40:47 +01:00

36 lines
1.3 KiB
Django/Jinja

<section id="{{ applet_data.id }}-eula">
{{ render_h2(l10n("disclaimer.warning", "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)) }}
</section>
<section id="{{ applet_data.id }}-input">
{{ render_h2(l10n("file.selection.title", applet_data.id, user_lang)) }}
{{ render_paragraph(l10n("file.selection.1", applet_data.id, user_lang)) }}
{{ render_file_input(applet_data.id + "-input-file", true, ".xlsx, .xlsm", true, true) }}
<div id="{{ applet_data.id }}-errors">
<div class="bkgd-red t-bold t-center w-full r-l border p-xs">
⚠️ These styles require a special workaround to work properly ⚠️
</div>
</div>
</section>
<section id="{{ applet_data.id }}-details">
{{ render_h2(l10n("details.title", applet_data.id, user_lang)) }}
<div id="{{ applet_data.id }}-details-empty">
{{ render_paragraph(l10n("details.empty.1", applet_data.id, user_lang)) }}
</div>
</section>
{% if is_standalone %}
<section id="{{ applet_data.id }}-licenses">
{{ render_h2(l10n("licenses.title", applet_data.id, user_lang)) }}
<p>123</p>
</section>
{% endif %}