forked from open-webui/open-webui
refac
This commit is contained in:
parent
e2447dd0a7
commit
ebeaa24e9d
1 changed files with 4 additions and 3 deletions
|
@ -165,9 +165,10 @@
|
||||||
<th scope="col" class="px-3 py-2"> {$i18n.t('Role')} </th>
|
<th scope="col" class="px-3 py-2"> {$i18n.t('Role')} </th>
|
||||||
<th scope="col" class="px-3 py-2"> {$i18n.t('Name')} </th>
|
<th scope="col" class="px-3 py-2"> {$i18n.t('Name')} </th>
|
||||||
<th scope="col" class="px-3 py-2"> {$i18n.t('Email')} </th>
|
<th scope="col" class="px-3 py-2"> {$i18n.t('Email')} </th>
|
||||||
<th scope="col" class="px-3 py-2"> {$i18n.t('Created at')} </th>
|
|
||||||
<th scope="col" class="px-3 py-2"> {$i18n.t('Last Active')} </th>
|
<th scope="col" class="px-3 py-2"> {$i18n.t('Last Active')} </th>
|
||||||
|
|
||||||
|
<th scope="col" class="px-3 py-2"> {$i18n.t('Created at')} </th>
|
||||||
|
|
||||||
<th scope="col" class="px-3 py-2 text-right" />
|
<th scope="col" class="px-3 py-2 text-right" />
|
||||||
</tr>
|
</tr>
|
||||||
</thead>
|
</thead>
|
||||||
|
@ -225,11 +226,11 @@
|
||||||
<td class=" px-3 py-2"> {user.email} </td>
|
<td class=" px-3 py-2"> {user.email} </td>
|
||||||
|
|
||||||
<td class=" px-3 py-2">
|
<td class=" px-3 py-2">
|
||||||
{dayjs(user.created_at * 1000).format($i18n.t('MMMM DD, YYYY'))}
|
{dayjs(user.last_active_at * 1000).fromNow()}
|
||||||
</td>
|
</td>
|
||||||
|
|
||||||
<td class=" px-3 py-2">
|
<td class=" px-3 py-2">
|
||||||
{dayjs(user.last_active_at * 1000).fromNow()}
|
{dayjs(user.created_at * 1000).format($i18n.t('MMMM DD, YYYY'))}
|
||||||
</td>
|
</td>
|
||||||
|
|
||||||
<td class="px-3 py-2 text-right">
|
<td class="px-3 py-2 text-right">
|
||||||
|
|
Loading…
Reference in a new issue