We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8066b7f commit 449caacCopy full SHA for 449caac
src/routes/v2/admin/users/+page.svelte
@@ -52,6 +52,7 @@
52
<th>Active</th>
53
<th>Superuser</th>
54
<th>Verified</th>
55
+ <th>Has Profile</th>
56
<th>Actions</th>
57
</tr>
58
</thead>
@@ -64,6 +65,7 @@
64
65
<td><BooleanIcon value={user.is_active} /></td>
66
<td><BooleanIcon value={user.is_superuser} /></td>
67
<td><BooleanIcon value={user.is_verified} /></td>
68
+ <td><BooleanIcon value={user.profile_id !== null} /></td>
69
<td>
70
<a href="/v2/admin/users/{user.id}" class="btn btn-light">
71
<i class="bi-info-circle"></i> Info
0 commit comments