23 lines
823 B
Django/Jinja
23 lines
823 B
Django/Jinja
<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>
|