ro
f1995d2163
Updated CSV export methodology to use the Location Repo class. Also updated export links show location counts for each rating
23 lines
792 B
PHP
23 lines
792 B
PHP
@extends('frame')
|
|
@section('title', 'The Bad Space|Exports')
|
|
@section('main-content')
|
|
@parent
|
|
<section>
|
|
<article>
|
|
<h2>CSV Exports</h2>
|
|
Heat Rating is the percentage of Current Sources 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.*
|
|
<h3>For Mastodon</h3>
|
|
|
|
@foreach($list as $item)
|
|
|
|
<a href="/exports/mastodon/{{$item['heatRating']}}">Heat Rating: {{$item['heatRating']}}% - Location Count: {{$item['ratingCount']}}</a><br />
|
|
|
|
@endforeach
|
|
<br />
|
|
<i>* Heating Ratings are still a work in progress so please review list before using.</i>
|
|
<br /><br />
|
|
|
|
|
|
</article>
|
|
</section>
|
|
@endsection |