Prepare for version 5.1.3
[phpmyadmin.git] / templates / transformation_overview.twig
blob1ae3d37e15c938c07586e03693fcf44a54b7f12d
1 <h2>{% trans 'Available media types' %}</h2>
3 <ul>
4   {% for mime_type in mime_types %}
5     <li>
6       {{ mime_type.is_empty ? '<em>' }}
7       {{ mime_type.name }}
8       {{ mime_type.is_empty ? '</em>' }}
9     </li>
10   {% endfor %}
11 </ul>
13 <h2 id="transformation">{% trans 'Available browser display transformations' %}</h2>
15 <table class="pma-table">
16   <thead>
17     <tr>
18       <th>{% trans 'Browser display transformation' %}</th>
19       <th>{% trans %}Description{% context %}for media type transformation{% endtrans %}</th>
20     </tr>
21   </thead>
22   <tbody>
23     {% for transformation in transformations.transformation %}
24       <tr>
25         <td>{{ transformation.name }}</td>
26         <td>{{ transformation.description }}</td>
27       </tr>
28     {% endfor %}
29   </tbody>
30 </table>
32 <h2 id="input_transformation">{% trans 'Available input transformations' %}</h2>
34 <table class="pma-table">
35   <thead>
36     <tr>
37       <th>{% trans 'Input transformation' %}</th>
38       <th>{% trans %}Description{% context %}for media type transformation{% endtrans %}</th>
39     </tr>
40   </thead>
41   <tbody>
42     {% for transformation in transformations.input_transformation %}
43       <tr>
44         <td>{{ transformation.name }}</td>
45         <td>{{ transformation.description }}</td>
46       </tr>
47     {% endfor %}
48   </tbody>
49 </table>