streams/view/tpl/superblock_serverlist.tpl

19 lines
414 B
Smarty
Raw Permalink Normal View History

2020-04-18 03:47:55 +00:00
<h3>{{$blocked}}</h3>
<br>
{{if $nothing}}
<div class="descriptive-text">{{$nothing}}</div>
<br>
{{/if}}
{{if $entries}}
<ul style="list-style-type: none;">
{{foreach $entries as $e}}
<li>
<div>
2023-01-27 23:02:51 +00:00
<a class="float-end" href="superblock?f=&unblocksite={{$e.1}}&sectok={{$token}}" title="{{$remove}}"><i class="fa fa-trash"></i></a>
2020-09-07 02:49:22 +00:00
<a href="https://{{$e.0}}">&nbsp;{{$e.0}}</a>
2020-04-18 03:47:55 +00:00
</div>
</li>
{{/foreach}}
</ul>
{{/if}}