Update website

This commit is contained in:
Guilhem Lavaux 2025-03-24 09:27:39 +01:00
parent a0b0d3dae7
commit ae7ef6ad45
3151 changed files with 566766 additions and 48 deletions

View file

@ -0,0 +1,6 @@
<dl>
<dt>{{ name }}</dt>
{% for error in error_list %}
<dd>{{ error|raw }}</dd>
{% endfor %}
</dl>

View file

@ -0,0 +1,14 @@
{% set colspan = 2 %}
{% if is_setup %}
{% set colspan = colspan + 1 %}
{% endif %}
{% if show_buttons %}
<tr>
<td colspan="{{ colspan }}" class="lastrow">
<input class="btn btn-primary green" type="submit" name="submit_save" value="{% trans 'Apply' %}">
<input class="btn btn-secondary" type="button" name="submit_reset" value="{% trans 'Reset' %}">
</td>
</tr>
{% endif %}
</table>
</fieldset>

View file

@ -0,0 +1,17 @@
<fieldset
{%- for key, value in attributes -%}
{{- ' ' }}{{ key }}="{{ value }}"
{%- endfor %}>
<legend>{{ title }}</legend>
{% if description is not empty %}
<p>{{ description|raw }}</p>
{% endif %}
{# This must match with displayErrors() in scripts.js #}
{% if errors is iterable and errors|length > 0 %}
<dl class="errors">
{% for error in errors %}
<dd>{{ error }}</dd>
{% endfor %}
</dl>
{% endif %}
<table class="pma-table" width="100%" cellspacing="0">

View file

@ -0,0 +1 @@
</form>

View file

@ -0,0 +1,7 @@
<form method="{{ method }}" action="{{ action|raw }}" class="config-form disableAjax">
<input type="hidden" name="tab_hash" value="">
{% if has_check_page_refresh %}
<input type="hidden" name="check_page_refresh" id="check_page_refresh" value="">
{% endif %}
{{ get_hidden_inputs('', '', 0, 'server') }}
{{ get_hidden_fields(hidden_fields, '', true) }}

View file

@ -0,0 +1,5 @@
<tr class="group-header group-header-{{ group }}">
<th colspan="{{ colspan }}">
{{ header_text }}
</th>
</tr>

View file

@ -0,0 +1 @@
</div>

View file

@ -0,0 +1,6 @@
<ul class="tabs responsivetable row">
{% for id, name in tabs %}
<li><a href="#{{ id }}">{{ name }}</a></li>
{% endfor %}
</ul>
<div class="tabs_contents col">