Compare commits
2 Commits
941f7b480e
...
09a0139839
Author | SHA1 | Date | |
---|---|---|---|
09a0139839 | |||
e9fde81bfb |
@ -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: '<<',
|
||||
|
@ -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>
|
||||
|
Loading…
Reference in New Issue
Block a user