mirror of
https://koodu.h-i.works/projects/thebadspace
synced 2025-06-25 16:04:37 -05:00
Seperated silence and block counts
Actions taken against and instance of have been separted into their respective buckets so they can be display properly rather than simply grouped together and mislabled. This gives a better sense of the severity of response per instance.
This commit is contained in:
@ -32,11 +32,9 @@
|
||||
@foreach($recent as $location)
|
||||
<a class="list-link" role="listitem" href="/location/{{$location->uuid}}">
|
||||
<span>{{$location->block_count}}</span>
|
||||
@if($location->rating == 'silence')
|
||||
<img class="menu-icon" src="/assets/images/global/status-silence.svg" title="silenced" />
|
||||
@else
|
||||
<img class="menu-icon" src="/assets/images/global/status-suspend.svg" title="suspended" />
|
||||
@endif
|
||||
<img class="menu-icon" src="/assets/images/global/status-suspend.svg" title="suspended" />
|
||||
<span>{{$location->silence_count}}</span>
|
||||
<img class="menu-icon" src="/assets/images/global/status-silence.svg" title="silenced" />
|
||||
<label>{{$location->name}}</label>
|
||||
</a>
|
||||
@endforeach
|
||||
|
@ -17,16 +17,14 @@
|
||||
@endforeach
|
||||
@endif
|
||||
<br />
|
||||
@if($location->rating == 'silence')
|
||||
<img class="rating-icon" src="/assets/images/global/status-silence.svg" title="silenced" />
|
||||
<strong>Silenced Count: {{$location->block_count}}</strong>
|
||||
@else
|
||||
<img class="rating-icon" src="/assets/images/global/status-suspend.svg" title="suspended" />
|
||||
<strong>Suspended Count: {{$location->block_count}}</strong>
|
||||
<strong>Total Actions:</strong> {{$actions}}/{{$sources_count}}<br />
|
||||
<img class="rating-icon" src="/assets/images/global/status-suspend.svg" title="suspended" />
|
||||
<strong>Suspended: {{$location->block_count}}</strong>
|
||||
|
||||
@endif
|
||||
<br />
|
||||
This count reflects the number of times this instance has been suspended or silenced be two or more <a href="/about#how">Current Sources</a>
|
||||
<img class="rating-icon" src="/assets/images/global/status-silence.svg" title="silenced" />
|
||||
<strong>Silenced: {{$location->silence_count}}</strong>
|
||||
<br /><br />
|
||||
Total Actions represent the number of actions, silences or suspensions, that have been taken against an instance by <a href="/about#how">Current Sources</a>
|
||||
|
||||
<br />UPDATED : {{$updated}}
|
||||
</article>
|
||||
|
Reference in New Issue
Block a user