Skip to content

Commit 449caac

Browse files
committed
Added "Has Profile" column to users table
1 parent 8066b7f commit 449caac

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

src/routes/v2/admin/users/+page.svelte

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -52,6 +52,7 @@
5252
<th>Active</th>
5353
<th>Superuser</th>
5454
<th>Verified</th>
55+
<th>Has Profile</th>
5556
<th>Actions</th>
5657
</tr>
5758
</thead>
@@ -64,6 +65,7 @@
6465
<td><BooleanIcon value={user.is_active} /></td>
6566
<td><BooleanIcon value={user.is_superuser} /></td>
6667
<td><BooleanIcon value={user.is_verified} /></td>
68+
<td><BooleanIcon value={user.profile_id !== null} /></td>
6769
<td>
6870
<a href="/v2/admin/users/{user.id}" class="btn btn-light">
6971
<i class="bi-info-circle"></i> Info

0 commit comments

Comments
 (0)