Compare commits

..

No commits in common. "09a01398399a235c5ceca64b581ae68afbdc466e" and "941f7b480e7ff2d4a4aa0dc0d375a497ffa7bf0f" have entirely different histories.

2 changed files with 6 additions and 19 deletions

View File

@ -1,5 +1,3 @@
@use(App\Models\Domain)
@extends('layouts.app') @extends('layouts.app')
@section('htmlheader_title') @section('htmlheader_title')
FTN Domains FTN Domains
@ -12,14 +10,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>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>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><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 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 \App\Models\Domain))(you can <a href="{{ url('domain/addedit') }}">add</a> more)@endcan:</p>
</div> </div>
</div> </div>
<div class="row"> <div class="row">
<div class="col-9"> <div class="col-9">
@if (Domain::count() === 0) @if (\App\Models\Domain::count() === 0)
@can('admin',(new Domain)) @can('admin',(new \App\Models\Domain))
<p>There are no domains setup, to <a href="{{ url('domain/addedit') }}">set up your first</a>.</p> <p>There are no domains setup, to <a href="{{ url('domain/addedit') }}">set up your first</a>.</p>
@else @else
<p class="pad">There are no domains - you need to ask an admin to create one for you.</p> <p class="pad">There are no domains - you need to ask an admin to create one for you.</p>
@ -37,7 +35,7 @@
</thead> </thead>
<tbody> <tbody>
@foreach (Domain::orderBy('name')->with(['zones'])->get() as $oo) @foreach (\App\Models\Domain::orderBy('name')->with(['zones'])->get() as $oo)
<tr> <tr>
<td><a href="{{ url('domain/addedit',[$oo->id]) }}">{{ $oo->id }}</a></td> <td><a href="{{ url('domain/addedit',[$oo->id]) }}">{{ $oo->id }}</a></td>
<td>{{ $oo->name }}</td> <td>{{ $oo->name }}</td>
@ -77,17 +75,6 @@
style: 'fade', style: 'fade',
speed: 500 speed: 500
}, },
columnDefs: [
{
targets: 4,
type: 'num-fmt',
render: {
'sort': function (data,type,row,meta) {
return data ? parseFloat(data) : 0;
},
}
}
],
language: { language: {
paginate: { paginate: {
previous: '&lt;&lt;', previous: '&lt;&lt;',

View File

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