2023-08-18 23:34:53 +02:00
|
|
|
@extends('frame')
|
|
|
|
|
|
|
|
@section('title', 'The Bad Space | Location Info')
|
|
|
|
|
|
|
|
@section('main-content')
|
|
|
|
@parent
|
|
|
|
<section>
|
|
|
|
<article>
|
|
|
|
<h2>Description</h2>
|
|
|
|
{{$location->description}}<br />
|
2024-01-26 21:50:20 +01:00
|
|
|
<h2>References</h2>
|
|
|
|
<h3>Images</h3>
|
2023-08-28 23:51:42 +02:00
|
|
|
@if($images != null)
|
|
|
|
@foreach($images as $image)
|
|
|
|
<a href="/{{$image->path}}" class="location-image" style="background: url(/{{$image->path}}) no-repeat center center / cover #fc6399" />
|
|
|
|
</a>
|
|
|
|
@endforeach
|
|
|
|
@endif
|
2024-01-26 21:50:20 +01:00
|
|
|
@php
|
|
|
|
$action = $location->block_count + $location->silence_count;
|
2024-04-14 23:04:36 +02:00
|
|
|
$rating = floor(($action / $sources_count)*100);
|
2024-01-26 21:50:20 +01:00
|
|
|
@endphp
|
|
|
|
<h3>Links</h3>
|
|
|
|
<div class="location-rating">
|
|
|
|
<div>
|
|
|
|
<img class="rating-icon" src="/assets/images/global/heat.svg" title="heat-rating" />
|
|
|
|
<span>RATING: {{$rating}}%</span>
|
|
|
|
</div>
|
|
|
|
<div>
|
|
|
|
<img class="rating-icon" src="/assets/images/global/status-silence.svg" title="silenced" />
|
|
|
|
<span>SILENCED: {{$location->silence_count}}</span>
|
|
|
|
</div>
|
|
|
|
<div>
|
|
|
|
<img class="rating-icon" src="/assets/images/global/status-suspend.svg" title="suspended" />
|
|
|
|
<span>SUSPENDED: {{$location->block_count}}</span>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
|
2023-08-29 20:37:52 +02:00
|
|
|
|
2024-02-21 23:47:05 +01:00
|
|
|
@if($edit)
|
|
|
|
<hr />
|
|
|
|
<a href="/den/location/edit/{{$location->uuid}}">Edit {{$location->name}}</a>
|
|
|
|
<hr />
|
|
|
|
@endif
|
|
|
|
|
|
|
|
|
2024-01-26 21:50:20 +01:00
|
|
|
|
|
|
|
<br />
|
|
|
|
Heat Rating is the percentage of <a href="/about#how">Current Sources</a> that have taken action against an instance. The higher the number of Sources that have silenced and/or suspended an instance, the higher the Heat Rating.
|
2023-08-28 23:51:42 +02:00
|
|
|
|
2023-08-18 23:34:53 +02:00
|
|
|
<br />UPDATED : {{$updated}}
|
|
|
|
</article>
|
|
|
|
</section>
|
|
|
|
@endsection
|