user_listings.twig 524 B

12345678910111213141516171819202122
  1. <h2>{{ 'Users of \'%s\' user group'|trans|format(user_group_special_chars) }}</h2>
  2. {% if num_rows == 0 %}
  3. <p>{% trans 'No users were found belonging to this user group.' %}</p>
  4. {% else %}
  5. <table class="pma-table">
  6. <thead>
  7. <tr>
  8. <th>#</th>
  9. <th>{% trans 'User' %}</th>
  10. </tr>
  11. </thead>
  12. <tbody>
  13. {% for obj in users %}
  14. <tr>
  15. <td>{{ obj.count }}</td>
  16. <td>{{ obj.user }}</td>
  17. </tr>
  18. {% endfor %}
  19. </tbody>
  20. </table>
  21. {% endif %}