Upgrade to Laravel 11, begining of enabling network join functionality, removed QueryCacheable
This commit is contained in:
@@ -156,24 +156,41 @@
|
||||
</div>
|
||||
|
||||
<!-- Sign up -->
|
||||
<div class="accordion-item">
|
||||
<h3 class="accordion-header">
|
||||
<span class="accordion-button collapsed" id="signup" data-bs-toggle="collapse" data-bs-target="#collapse_signup" aria-expanded="false" aria-controls="collapse_signup">Join Network</span>
|
||||
</h3>
|
||||
@if ($o->can_accept_app)
|
||||
<div class="accordion-item">
|
||||
<h3 class="accordion-header">
|
||||
<span class="accordion-button collapsed" id="signup" data-bs-toggle="collapse" data-bs-target="#collapse_signup" aria-expanded="false" aria-controls="collapse_signup">Join Network</span>
|
||||
</h3>
|
||||
|
||||
<div id="collapse_signup" class="accordion-collapse collapse" aria-labelledby="signup" data-bs-parent="#accordion_homepage">
|
||||
<div class="accordion-body">
|
||||
@guest
|
||||
To start an application to join this network please <a href="{{ url('login') }}">login</a>.
|
||||
@else
|
||||
@if($user->isMember($o))
|
||||
@else
|
||||
This website is not ready to take applications yet, check back soon!
|
||||
@endif
|
||||
@endguest
|
||||
<div id="collapse_signup" class="accordion-collapse collapse" aria-labelledby="signup" data-bs-parent="#accordion_homepage">
|
||||
<div class="accordion-body">
|
||||
<p>Your system(s) <strong class="highlight">{!! $o->userHasSystemsNotInNet(Auth::user())->pluck('name')->join('</strong>, <strong class="highlight">') !!}</strong> can join this network.</p>
|
||||
<p>
|
||||
If you want to join it/them to this network, make sure:
|
||||
</p>
|
||||
|
||||
<ul>
|
||||
<li>it is online and can accept mailer calls</li>
|
||||
<li>you have the <strong class="highlight">BBS Internet Hostname</strong> configured with the correct hostname</li>
|
||||
<li>you have selected either <strong class="highlight">BINKP</strong> or <strong class="highlight">EMSI</strong> in the mailer settings, with the correct TCP port</li>
|
||||
</ul>
|
||||
|
||||
<p>Here's what will happen next</p>
|
||||
|
||||
<ul>
|
||||
<li>You complete the application form (see the button below)</li>
|
||||
<li>We'll poll your system to make sure it is connectable</li>
|
||||
<li>Your applicaiton will then be forwarded to the <strong class="highlight">ZC</strong> of the domain</li>
|
||||
<li>You'll hear back from your assigned hub to configure your system with your assigned FTN address</li>
|
||||
<li>Configure your system, subscribe to file and echo areas</li>
|
||||
<li>Enjoy!</li>
|
||||
</ul>
|
||||
|
||||
<button class="btn btn-success">Lets Do It</button>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
@endif
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
@@ -181,15 +198,8 @@
|
||||
|
||||
@section('page-css')
|
||||
@css('datatables')
|
||||
<style>
|
||||
div#collapse_about {
|
||||
min-height: 25em;
|
||||
}
|
||||
div#collapse_about .collapse{
|
||||
min-height: 0;
|
||||
}
|
||||
</style>
|
||||
@append
|
||||
|
||||
@section('page-scripts')
|
||||
@js('datatables')
|
||||
@js('highcharts')
|
||||
@@ -253,6 +263,19 @@
|
||||
}
|
||||
}
|
||||
});
|
||||
|
||||
@if ($o->can_accept_app)
|
||||
$('#join_top').on('click',function(item) {
|
||||
$('.accordion-collapse').each(function(){
|
||||
if ($(this).hasClass('show')) {
|
||||
$(this).toggle();
|
||||
}
|
||||
});
|
||||
|
||||
$('#collapse_signup').toggle();
|
||||
return false;
|
||||
});
|
||||
@endif
|
||||
});
|
||||
|
||||
Highcharts.chart('network_traffic', {
|
||||
|
Reference in New Issue
Block a user