Compare commits

..

2 Commits

Author SHA1 Message Date
09a0139839 Dont display inactive systems in the sidebar
All checks were successful
Create Docker Image / Build Docker Image (x86_64) (push) Successful in 42s
Create Docker Image / Build Docker Image (arm64) (push) Successful in 1m32s
Create Docker Image / Final Docker Image Manifest (push) Successful in 10s
2024-12-02 19:44:08 +11:00
e9fde81bfb Fix sorting of FTN zones in table Admin->Domain table 2024-12-02 19:39:11 +11:00
2 changed files with 19 additions and 6 deletions

View File

@ -1,3 +1,5 @@
@use(App\Models\Domain)
@extends('layouts.app')
@section('htmlheader_title')
FTN Domains
@ -10,14 +12,14 @@
<p>In FTN network addresses, a domain is the 5th dimension and used when a system supports 5D addressing, ie: zone:net/node.point@<strong class="highlight">domain</strong>.</p>
<p>Domains are used with zones to uniquely identify a FTN network.</p>
<p><small>Some legacy Fidonet software is not 5D aware and may behave unexpectedly when a domain is used</small></p>
<p>This system is aware of the following domains @can('admin',(new \App\Models\Domain))(you can <a href="{{ url('domain/addedit') }}">add</a> more)@endcan:</p>
<p>This system is aware of the following domains @can('admin',(new Domain))(you can <a href="{{ url('domain/addedit') }}">add</a> more)@endcan:</p>
</div>
</div>
<div class="row">
<div class="col-9">
@if (\App\Models\Domain::count() === 0)
@can('admin',(new \App\Models\Domain))
@if (Domain::count() === 0)
@can('admin',(new Domain))
<p>There are no domains setup, to <a href="{{ url('domain/addedit') }}">set up your first</a>.</p>
@else
<p class="pad">There are no domains - you need to ask an admin to create one for you.</p>
@ -35,7 +37,7 @@
</thead>
<tbody>
@foreach (\App\Models\Domain::orderBy('name')->with(['zones'])->get() as $oo)
@foreach (Domain::orderBy('name')->with(['zones'])->get() as $oo)
<tr>
<td><a href="{{ url('domain/addedit',[$oo->id]) }}">{{ $oo->id }}</a></td>
<td>{{ $oo->name }}</td>
@ -75,6 +77,17 @@
style: 'fade',
speed: 500
},
columnDefs: [
{
targets: 4,
type: 'num-fmt',
render: {
'sort': function (data,type,row,meta) {
return data ? parseFloat(data) : 0;
},
}
}
],
language: {
paginate: {
previous: '&lt;&lt;',

View File

@ -2,10 +2,10 @@
FTN Networks
@auth
@if($user->systems->count())
@if(($x=$user->systems->where('active',TRUE))->count())
<dl>
<dt>My Systems</dt>
@foreach ($user->systems->sortBy('name') as $o)
@foreach ($x as $o)
<dd><a href="{{ url('system/addedit',['id'=>$o->id]) }}">{{ $o->name }}</a></dd>
@endforeach
</dl>