status_table.twig 942 B

12345678910111213141516171819202122232425262728293031323334
  1. <div id="replication_{{ type }}_section"{{ is_hidden ? ' style="display: none;"' }}>
  2. {% if has_title %}
  3. <h4>
  4. <a id="replication_{{ type }}"></a>
  5. {% if type == 'master' %}
  6. {% trans 'Master status' %}
  7. {% else %}
  8. {% trans 'Slave status' %}
  9. {% endif %}
  10. </h4>
  11. {% endif %}
  12. <table id="server{{ type }}replicationsummary" class="pma-table data">
  13. <thead>
  14. <tr>
  15. <th>{% trans 'Variable' %}</th>
  16. <th>{% trans 'Value' %}</th>
  17. </tr>
  18. </thead>
  19. <tbody>
  20. {% for variable in variables %}
  21. <tr>
  22. <td class="name">{{ variable.name }}</td>
  23. <td class="value">
  24. <span{% if variable.status == 'attention' %} class="attention"{% elseif variable.status == 'allfine' %} class="allfine"{% endif %}>
  25. {{ variable.value }}
  26. </span>
  27. </td>
  28. </tr>
  29. {% endfor %}
  30. </tbody>
  31. </table>
  32. </div>