mirror of
https://koodu.h-i.works/projects/thebadspace
synced 2025-06-25 16:04:37 -05:00
-av
This commit is contained in:
@ -31,13 +31,14 @@
|
||||
<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" />
|
||||
@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="status-suspend" />
|
||||
<span>{{$location->block_count}}</span>
|
||||
<img class="menu-icon" src="/assets/images/global/status-suspend.svg" title="suspended" />
|
||||
@endif
|
||||
<label>{{$location->name}}</label>
|
||||
<span>NOTED COUNT: {{$location->block_count}}</span>
|
||||
</a>
|
||||
@endforeach
|
||||
</article>
|
||||
|
@ -11,12 +11,13 @@
|
||||
@foreach($locations as $location)
|
||||
<a class="list-link" role="listitem" href="/location/{{$location->uuid}}">
|
||||
@if($location->rating == 'silence')
|
||||
<img class="menu-icon" src="/assets/images/global/status-silence.svg" title="status-silence" />
|
||||
<span>{{$location->block_count}}</span>
|
||||
<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="status-suspend" />
|
||||
<span>{{$location->block_count}}</span>
|
||||
<img class="menu-icon" src="/assets/images/global/status-suspend.svg" title="suspended" />
|
||||
@endif
|
||||
<label>{{$location->name}}</label>
|
||||
<span>NOTED COUNT: {{$location->block_count}}</span>
|
||||
</a>
|
||||
@endforeach
|
||||
<a href="/listings/{{$prev}}">PREV</a>
|
||||
|
@ -17,8 +17,16 @@
|
||||
@endforeach
|
||||
@endif
|
||||
<br />
|
||||
<strong>Noted Count: {{$location->block_count}}</strong><br />
|
||||
Noted Count reflects the number of times this instance has been suspended or silenced by a member of <a href="https://writer.oliphant.social/oliphant/trusted-source-membership">Trusted Sources</a>
|
||||
@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>
|
||||
|
||||
@endif
|
||||
<br />
|
||||
This count reflects the number of times this instance has been suspended or silenced by a member of <a href="https://writer.oliphant.social/oliphant/trusted-source-membership">Trusted Sources</a>
|
||||
|
||||
<br />UPDATED : {{$updated}}
|
||||
</article>
|
||||
|
Reference in New Issue
Block a user