Explain why there are no echoareas/fileareas for the system
This commit is contained in:
parent
368198bc77
commit
2735df5d7b
@ -258,8 +258,12 @@ use App\Models\Address;
|
|||||||
|
|
||||||
<div id="collapse_echoarea" class="accordion-collapse collapse {{ ($flash=='echoarea') ? 'show' : '' }}" aria-labelledby="echoarea" data-bs-parent="#accordion_homepage">
|
<div id="collapse_echoarea" class="accordion-collapse collapse {{ ($flash=='echoarea') ? 'show' : '' }}" aria-labelledby="echoarea" data-bs-parent="#accordion_homepage">
|
||||||
<div class="accordion-body">
|
<div class="accordion-body">
|
||||||
|
@if ($o->sessions->count())
|
||||||
<p>This system can subscribe to the following echoareas:</p>
|
<p>This system can subscribe to the following echoareas:</p>
|
||||||
@include('system.widget.form-echoarea')
|
@include('system.widget.form-echoarea')
|
||||||
|
@else
|
||||||
|
<p>No session details exist for this system, so Echoareas are unavailable.</p>
|
||||||
|
@endif
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
@ -272,8 +276,12 @@ use App\Models\Address;
|
|||||||
|
|
||||||
<div id="collapse_filearea" class="accordion-collapse collapse {{ ($flash=='filearea') ? 'show' : '' }}" aria-labelledby="filearea" data-bs-parent="#accordion_homepage">
|
<div id="collapse_filearea" class="accordion-collapse collapse {{ ($flash=='filearea') ? 'show' : '' }}" aria-labelledby="filearea" data-bs-parent="#accordion_homepage">
|
||||||
<div class="accordion-body">
|
<div class="accordion-body">
|
||||||
|
@if ($o->sessions->count())
|
||||||
<p>This system can subscribe to the following fileareas:</p>
|
<p>This system can subscribe to the following fileareas:</p>
|
||||||
@include('system.widget.form-filearea')
|
@include('system.widget.form-filearea')
|
||||||
|
@else
|
||||||
|
<p>No session details exist for this system, so Fileareas are unavailable.</p>
|
||||||
|
@endif
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
@ -1,5 +1,6 @@
|
|||||||
<div class="row">
|
<div class="row">
|
||||||
<div class="col-12">
|
<div class="col-12">
|
||||||
|
@if($echoareas->count())
|
||||||
<table class="table monotable" id="echoareas">
|
<table class="table monotable" id="echoareas">
|
||||||
<thead>
|
<thead>
|
||||||
<tr>
|
<tr>
|
||||||
@ -19,6 +20,9 @@
|
|||||||
@endforeach
|
@endforeach
|
||||||
</tbody>
|
</tbody>
|
||||||
</table>
|
</table>
|
||||||
|
@else
|
||||||
|
<p>No echoareas available for this sytem. Check node security and/or echoarea security.</p>
|
||||||
|
@endif
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
|
@ -1,5 +1,6 @@
|
|||||||
<div class="row">
|
<div class="row">
|
||||||
<div class="col-12">
|
<div class="col-12">
|
||||||
|
@if($fileareas->count())
|
||||||
<table class="table monotable" id="fileareas">
|
<table class="table monotable" id="fileareas">
|
||||||
<thead>
|
<thead>
|
||||||
<tr>
|
<tr>
|
||||||
@ -19,6 +20,9 @@
|
|||||||
@endforeach
|
@endforeach
|
||||||
</tbody>
|
</tbody>
|
||||||
</table>
|
</table>
|
||||||
|
@else
|
||||||
|
<p>No fileareas available for this sytem. Check node security and/or filearea security.</p>
|
||||||
|
@endif
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user