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,49 @@
<h2>{% trans 'Available media types' %}</h2>
<ul>
{% for mime_type in mime_types %}
<li>
{{ mime_type.is_empty ? '<em>' }}
{{ mime_type.name }}
{{ mime_type.is_empty ? '</em>' }}
</li>
{% endfor %}
</ul>
<h2 id="transformation">{% trans 'Available browser display transformations' %}</h2>
<table class="pma-table">
<thead>
<tr>
<th>{% trans 'Browser display transformation' %}</th>
<th>{% trans %}Description{% context %}for media type transformation{% endtrans %}</th>
</tr>
</thead>
<tbody>
{% for transformation in transformations.transformation %}
<tr>
<td>{{ transformation.name }}</td>
<td>{{ transformation.description }}</td>
</tr>
{% endfor %}
</tbody>
</table>
<h2 id="input_transformation">{% trans 'Available input transformations' %}</h2>
<table class="pma-table">
<thead>
<tr>
<th>{% trans 'Input transformation' %}</th>
<th>{% trans %}Description{% context %}for media type transformation{% endtrans %}</th>
</tr>
</thead>
<tbody>
{% for transformation in transformations.input_transformation %}
<tr>
<td>{{ transformation.name }}</td>
<td>{{ transformation.description }}</td>
</tr>
{% endfor %}
</tbody>
</table>