Explain why there are no echoareas/fileareas for the system
This commit is contained in:
@@ -1,24 +1,28 @@
|
||||
<div class="row">
|
||||
<div class="col-12">
|
||||
<table class="table monotable" id="echoareas">
|
||||
<thead>
|
||||
<tr>
|
||||
<th>Subscribed</th>
|
||||
<th>Echoarea</th>
|
||||
<th>Description</th>
|
||||
</tr>
|
||||
</thead>
|
||||
|
||||
<tbody>
|
||||
@foreach ($echoareas as $oo)
|
||||
@if($echoareas->count())
|
||||
<table class="table monotable" id="echoareas">
|
||||
<thead>
|
||||
<tr>
|
||||
<td><input type="checkbox" name="id[]" value="{{ $oo->id }}" @if($ao->echoareas->search(function($item) use ($oo) { return $item->id === $oo->id; }) !== FALSE)checked @endif></td>
|
||||
<td>{{ $oo->name }}</td>
|
||||
<td>{{ $oo->description }}</td>
|
||||
<th>Subscribed</th>
|
||||
<th>Echoarea</th>
|
||||
<th>Description</th>
|
||||
</tr>
|
||||
@endforeach
|
||||
</tbody>
|
||||
</table>
|
||||
</thead>
|
||||
|
||||
<tbody>
|
||||
@foreach ($echoareas as $oo)
|
||||
<tr>
|
||||
<td><input type="checkbox" name="id[]" value="{{ $oo->id }}" @if($ao->echoareas->search(function($item) use ($oo) { return $item->id === $oo->id; }) !== FALSE)checked @endif></td>
|
||||
<td>{{ $oo->name }}</td>
|
||||
<td>{{ $oo->description }}</td>
|
||||
</tr>
|
||||
@endforeach
|
||||
</tbody>
|
||||
</table>
|
||||
@else
|
||||
<p>No echoareas available for this system. AKA address security doesnt permit any echoareas.</p>
|
||||
@endif
|
||||
</div>
|
||||
</div>
|
||||
|
||||
|
Reference in New Issue
Block a user