streams/view/tpl/channels.tpl

31 lines
898 B
Smarty
Raw Normal View History

2016-03-22 01:06:19 +00:00
<div class="generic-content-wrapper">
<div class="section-title-wrapper">
2023-01-27 23:02:51 +00:00
<a class="btn btn-success btn-sm float-end" href="{{$create.0}}" title="{{$create.1}}"><i class="fa fa-plus-circle"></i>&nbsp;{{$create.2}}</a>
2016-03-22 01:06:19 +00:00
<h2>{{$header}}</h2>
</div>
<div class="section-content-wrapper-np">
{{if $channel_usage_message}}
<div id="channel-usage-message" class="section-content-warning-wrapper">
{{$channel_usage_message}}
</div>
{{/if}}
<div id="channels-desc" class="section-content-info-wrapper">
{{$desc}}
</div>
{{foreach $all_channels as $chn}}
{{include file="channel.tpl" channel=$chn}}
{{/foreach}}
{{if $delegates}}
{{foreach $delegates as $chn}}
{{include file="channel.tpl" channel=$chn}}
{{/foreach}}
{{/if}}
2023-04-27 11:06:01 +00:00
{{if $links}}
{{foreach $links as $chn}}
{{include file="channel.tpl" channel=$chn}}
{{/foreach}}
{{/if}}
2016-03-22 01:06:19 +00:00
</div>
</div>