engines.twig 752 B

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