You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

23 line
752 B

  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>