users.html 1.0 KB

12345678910111213141516171819202122232425262728293031
  1. {% extends "admin/admin_layout.html" %}
  2. {% block admin_content %}
  3. <legend>Manage Users | <a href="{{ url_for('admin.add_user') }}">Add User</a></legend>
  4. <table class="table table-bordered">
  5. <thead>
  6. <tr>
  7. <th>#</th>
  8. <th>Username</th>
  9. <th>Posts</th>
  10. <th>Date registered</th>
  11. <th>Group</th>
  12. <th>Manage</th>
  13. </tr>
  14. </thead>
  15. <tbody>
  16. {% for user in users.items %}
  17. <tr>
  18. <td>{{ user.id }}</td>
  19. <td><a href="{{ url_for('user.profile', username=user.username) }}">{{ user.username }}</a></td>
  20. <td>{{ user.post_count }}</td>
  21. <td>{{ user.date_joined|format_date('%b %d %Y') }}</td>
  22. <td>{{ user.primary_group.name }}</td>
  23. <td>
  24. <a href="{{ url_for('admin.edit_user', user_id = user.id) }}">Edit</a> |
  25. <a href="{{ url_for('admin.delete_user', user_id = user.id) }}">Delete</a>
  26. </td>
  27. </tr>
  28. {% endfor %}
  29. </tbody>
  30. </table>
  31. {% endblock %}