65229edbab
Plugged in noted counts that detail how many times an instance as been suspended or silenced by members of the Trusted Sources. https://writer.oliphant.social/oliphant/trusted-source-membership Also added some additional meta data to links displaying instances lists so status and counts can be identified at a glance
45 lines
1.7 KiB
PHP
45 lines
1.7 KiB
PHP
@extends('frame')
|
|
@section('title', 'This is The Bad Space')
|
|
@section('main-content')
|
|
@parent
|
|
<section class="index-search">
|
|
<form class="index-search-form" action="/search" method="post" enctype="multipart/form-data">
|
|
<input type="text" name="index_search" value="" placeholder="Hi! This is where you search." />
|
|
<button aria-label="search-button">
|
|
<img class="button-icon" src="assets/images/global/icon-search.svg" />
|
|
</button>
|
|
@csrf
|
|
</form>
|
|
</section>
|
|
@isset($results)
|
|
<section>
|
|
<article>
|
|
<strong>
|
|
Found {{count($results)}} results:
|
|
</strong><br>
|
|
@foreach($results as $location)
|
|
<a role="listitem" href="/location/{{$location->uuid}}">{{$location->name}}</a></a><br />
|
|
@endforeach
|
|
</article>
|
|
</section>
|
|
@endisset
|
|
<section class="index-meta">
|
|
<article>
|
|
<h2>Bad Space Stats</h2>
|
|
<strong>{{$count}}</strong><br />
|
|
Instances being tracked.
|
|
<h2>Recent Updates</h2>
|
|
@foreach($recent as $location)
|
|
<a class="list-link" role="listitem" href="/location/{{$location->uuid}}">
|
|
@if($location->status == 'silence')
|
|
<img class="menu-icon" src="/assets/images/global/status-silence.svg" title="status-silence" />
|
|
@else
|
|
<img class="menu-icon" src="/assets/images/global/status-suspend.svg" title="status-suspend" />
|
|
@endif
|
|
<label>{{$location->name}}</label>
|
|
<span>NOTED COUNT: {{$location->block_count}}</span>
|
|
</a>
|
|
@endforeach
|
|
</article>
|
|
</section>
|
|
@endsection |