Minor fixes and changes.
Slightly altered the text in Admin Home, fixed an issue with the tree list.
This commit is contained in:
parent
d28df2f38b
commit
a4d7eab5de
|
|
@ -41,7 +41,7 @@
|
||||||
{{ App\Models\InviteKey::count() }}
|
{{ App\Models\InviteKey::count() }}
|
||||||
</span>
|
</span>
|
||||||
<span class="Stats">
|
<span class="Stats">
|
||||||
Invite Keys
|
Invite Key(s)
|
||||||
</span>
|
</span>
|
||||||
</div>
|
</div>
|
||||||
<div class="Stats-Wrapper">
|
<div class="Stats-Wrapper">
|
||||||
|
|
@ -49,7 +49,7 @@
|
||||||
{{ App\Models\InviteKey::where('active', true)->count() }}
|
{{ App\Models\InviteKey::where('active', true)->count() }}
|
||||||
</span>
|
</span>
|
||||||
<span class="Stats">
|
<span class="Stats">
|
||||||
Unused Invite Keys
|
Unused Invite Key(s)
|
||||||
</span>
|
</span>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
|
|
||||||
|
|
@ -36,8 +36,8 @@
|
||||||
ID</button>
|
ID</button>
|
||||||
</div>
|
</div>
|
||||||
</form>
|
</form>
|
||||||
<ul class="SearchTree">
|
|
||||||
@if ($user)
|
@if ($user)
|
||||||
|
<ul class="SearchTree">
|
||||||
<li class="Menu">
|
<li class="Menu">
|
||||||
<a title="{{ $invited_by }}'s Invite Tree" href="/iphone/tree?q={{ App\Models\User::where('name', $invited_by)->first()->id }}&searchBy=id">
|
<a title="{{ $invited_by }}'s Invite Tree" href="/iphone/tree?q={{ App\Models\User::where('name', $invited_by)->first()->id }}&searchBy=id">
|
||||||
<span>{{ $invited_by }}</span>
|
<span>{{ $invited_by }}</span>
|
||||||
|
|
@ -49,21 +49,21 @@
|
||||||
<span>{{ $user->name }}</span>
|
<span>{{ $user->name }}</span>
|
||||||
</a>
|
</a>
|
||||||
<a href="{{ route('profile', $user->id) }}" title="{{ $user->name }}'s Profile" class="forwardArrow">←</a>
|
<a href="{{ route('profile', $user->id) }}" title="{{ $user->name }}'s Profile" class="forwardArrow">←</a>
|
||||||
@foreach ($children as $child)
|
|
||||||
<ul class="TreeList">
|
<ul class="TreeList">
|
||||||
|
@foreach ($children as $child)
|
||||||
<li>
|
<li>
|
||||||
<a href="/iphone/tree?q={{ $child->id }}&searchBy=id" title="{{ $child->name }}'s Invite Tree">
|
<a href="/iphone/tree?q={{ $child->id }}&searchBy=id" title="{{ $child->name }}'s Invite Tree">
|
||||||
<span>{{ $child->name }}</span>
|
<span>{{ $child->name }}</span>
|
||||||
</a>
|
</a>
|
||||||
<a href="{{ route('profile', $child->id) }}" title="{{ $child->name }}'s Profile" class="forwardArrow">←</a>
|
<a href="{{ route('profile', $child->id) }}" title="{{ $child->name }}'s Profile" class="forwardArrow">←</a>
|
||||||
</li>
|
</li>
|
||||||
</ul>
|
|
||||||
@endforeach
|
@endforeach
|
||||||
|
</ul>
|
||||||
</li>
|
</li>
|
||||||
</ul>
|
</ul>
|
||||||
</li>
|
</li>
|
||||||
@endif
|
|
||||||
</ul>
|
</ul>
|
||||||
|
@endif
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
@endsection
|
@endsection
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue