mirror of
https://github.com/linuxserver/Heimdall.git
synced 2026-02-21 12:10:34 +09:00
Replace name for username in list view
This commit is contained in:
@@ -19,7 +19,7 @@
|
||||
<table class="table table-hover">
|
||||
<thead>
|
||||
<tr>
|
||||
<th>{{ __('app.user.name') }}</th>
|
||||
<th>{{ __('app.user.username') }}</th>
|
||||
<th>{{ __('app.apps.password') }}</th>
|
||||
<th>{{ __('app.apps.autologin_url') }}</th>
|
||||
<th class="text-center" width="100">{{ __('app.settings.edit') }}</th>
|
||||
@@ -30,7 +30,7 @@
|
||||
@if($users->first())
|
||||
@foreach($users as $user)
|
||||
<tr>
|
||||
<td>{{ $user->name }}</td>
|
||||
<td>{{ $user->username }}</td>
|
||||
<td><i class="fa {{ (!is_null($user->password) ? 'fa-check' : 'fa-times') }}" /></td>
|
||||
<td>
|
||||
@if(is_null($user->autologin))
|
||||
|
||||
Reference in New Issue
Block a user