Fix html closing tags (#1100)
This commit is contained in:
parent
6316cfe2af
commit
28052d5943
5 changed files with 5 additions and 4 deletions
|
@ -111,6 +111,7 @@
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
</div>
|
||||||
<div class="box-footer">
|
<div class="box-footer">
|
||||||
{!! csrf_field() !!}
|
{!! csrf_field() !!}
|
||||||
<button type="submit" class="btn btn-success btn-sm pull-right">Create</button>
|
<button type="submit" class="btn btn-success btn-sm pull-right">Create</button>
|
||||||
|
|
|
@ -56,7 +56,7 @@
|
||||||
@foreach ($nodes as $node)
|
@foreach ($nodes as $node)
|
||||||
<tr>
|
<tr>
|
||||||
<td class="text-center text-muted left-icon" data-action="ping" data-secret="{{ $node->daemonSecret }}" data-location="{{ $node->scheme }}://{{ $node->fqdn }}:{{ $node->daemonListen }}/v1"><i class="fa fa-fw fa-refresh fa-spin"></i></td>
|
<td class="text-center text-muted left-icon" data-action="ping" data-secret="{{ $node->daemonSecret }}" data-location="{{ $node->scheme }}://{{ $node->fqdn }}:{{ $node->daemonListen }}/v1"><i class="fa fa-fw fa-refresh fa-spin"></i></td>
|
||||||
<td><a href="{{ route('admin.nodes.view', $node->id) }}">{{ $node->name }}</td>
|
<td><a href="{{ route('admin.nodes.view', $node->id) }}">{{ $node->name }}</a></td>
|
||||||
<td>{{ $node->location->short }}</td>
|
<td>{{ $node->location->short }}</td>
|
||||||
<td>{{ $node->memory }} MB</td>
|
<td>{{ $node->memory }} MB</td>
|
||||||
<td>{{ $node->disk }} MB</td>
|
<td>{{ $node->disk }} MB</td>
|
||||||
|
|
|
@ -33,7 +33,7 @@
|
||||||
<p class="text-muted small" style="margin: 0 0 2px;">@lang('server.files.path', ['path' => '<code>/home/container</code>', 'size' => '<code>' . $node->upload_size . ' MB</code>'])</p>
|
<p class="text-muted small" style="margin: 0 0 2px;">@lang('server.files.path', ['path' => '<code>/home/container</code>', 'size' => '<code>' . $node->upload_size . ' MB</code>'])</p>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
<div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
@endsection
|
@endsection
|
||||||
|
|
||||||
|
|
|
@ -45,7 +45,7 @@
|
||||||
@if (isset($directory['first']) && $directory['first'] === true)
|
@if (isset($directory['first']) && $directory['first'] === true)
|
||||||
<tr data-type="disabled">
|
<tr data-type="disabled">
|
||||||
<td class="middle min-size"><i class="fa fa-folder" style="margin-left: 0.859px;"></i></td>
|
<td class="middle min-size"><i class="fa fa-folder" style="margin-left: 0.859px;"></i></td>
|
||||||
<td><a href="/server/{{ $server->uuidShort }}/files" data-action="directory-view">←</a></a></td>
|
<td><a href="/server/{{ $server->uuidShort }}/files" data-action="directory-view">←</a></td>
|
||||||
<td class="hidden-xs"></td>
|
<td class="hidden-xs"></td>
|
||||||
<td class="hidden-xs"></td>
|
<td class="hidden-xs"></td>
|
||||||
<td></td>
|
<td></td>
|
||||||
|
|
|
@ -74,7 +74,7 @@
|
||||||
<p>@lang('server.config.allocation.help_text')</p>
|
<p>@lang('server.config.allocation.help_text')</p>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
<div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
@endsection
|
@endsection
|
||||||
|
|
||||||
|
|
Loading…
Add table
Reference in a new issue