mirror of
https://github.com/snipe/snipe-it.git
synced 2024-12-24 05:04:07 -08:00
Show whether or not the user was imported via LDAP in the view page
This commit is contained in:
parent
fd10b755b0
commit
12c92e30b7
|
@ -244,6 +244,13 @@
|
||||||
<td class="text-nowrap">{{ trans('general.login_enabled') }}</td>
|
<td class="text-nowrap">{{ trans('general.login_enabled') }}</td>
|
||||||
<td>{{ ($user->activated=='1') ? trans('general.yes') : trans('general.no') }}</td>
|
<td>{{ ($user->activated=='1') ? trans('general.yes') : trans('general.no') }}</td>
|
||||||
</tr>
|
</tr>
|
||||||
|
@if ($user->ldap_import!='1')
|
||||||
|
<tr>
|
||||||
|
<td class="text-nowrap">LDAP</td>
|
||||||
|
<td>{{ trans('general.yes') }}</td>
|
||||||
|
</tr>
|
||||||
|
@endif
|
||||||
|
|
||||||
|
|
||||||
@if ($user->activated=='1')
|
@if ($user->activated=='1')
|
||||||
<tr>
|
<tr>
|
||||||
|
|
Loading…
Reference in a new issue