2025-01-05 01:59:05 +08:00
|
|
|
<% provide(:title, 'All users') %>
|
|
|
|
|
2025-01-17 15:02:25 +08:00
|
|
|
<div class="container mx-auto px-4 py-8">
|
|
|
|
<h1 class="text-3xl font-bold text-center mb-8">All Users</h1>
|
|
|
|
|
|
|
|
<!-- 用户列表 -->
|
|
|
|
<div class="grid gap-4 max-w-3xl mx-auto">
|
|
|
|
<%= render @users %>
|
|
|
|
</div>
|
2025-01-17 15:22:13 +08:00
|
|
|
|
|
|
|
<!-- 分页 -->
|
|
|
|
<div class="flex justify-center mb-6 mt-6">
|
|
|
|
<div class="join">
|
|
|
|
<%= paginate @users %>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
|
2025-01-17 15:02:25 +08:00
|
|
|
</div>
|