Show whether or not the user was imported via LDAP in the view page

This commit is contained in:
snipe 2020-07-10 16:21:27 -07:00
parent fd10b755b0
commit 12c92e30b7
No known key found for this signature in database
GPG key ID: 10BFFDA3ED34B5AC

View file

@ -244,6 +244,13 @@
<td class="text-nowrap">{{ trans('general.login_enabled') }}</td>
<td>{{ ($user->activated=='1') ? trans('general.yes') : trans('general.no') }}</td>
</tr>
@if ($user->ldap_import!='1')
<tr>
<td class="text-nowrap">LDAP</td>
<td>{{ trans('general.yes') }}</td>
</tr>
@endif
@if ($user->activated=='1')
<tr>