index.twig 703 B

123456789101112131415161718192021222324252627
  1. <h2>
  2. {{ get_image('b_engine') }}
  3. {% trans 'Storage engines' %}
  4. </h2>
  5. <table class="noclick">
  6. <thead>
  7. <tr>
  8. <th>{% trans 'Storage Engine' %}</th>
  9. <th>{% trans 'Description' %}</th>
  10. </tr>
  11. </thead>
  12. <tbody>
  13. {% for engine, details in engines %}
  14. <tr class="
  15. {{- details['Support'] == 'NO' or details['Support'] == 'DISABLED' ? ' disabled' }}
  16. {{ details['Support'] == 'DEFAULT' ? ' marked' }}">
  17. <td>
  18. <a rel="newpage" href="server_engines.php{{ get_common({'engine': engine}) }}">
  19. {{ details['Engine'] }}
  20. </a>
  21. </td>
  22. <td>{{ details['Comment'] }}</td>
  23. </tr>
  24. {% endfor %}
  25. </tbody>
  26. </table>