mirror of
https://github.com/ossrs/srs.git
synced 2025-02-13 11:51:57 +00:00
37 lines
No EOL
1.6 KiB
HTML
37 lines
No EOL
1.6 KiB
HTML
<div>
|
|
<div class="accordion">
|
|
<div class="accordion-group">
|
|
<div class="accordion-heading" sc-collapse="in">
|
|
<a class="accordion-toggle" href="javascript:void(0)">
|
|
System Vhosts
|
|
</a>
|
|
</div>
|
|
<div id="collapseOne" class="accordion-body collapse">
|
|
<div class="accordion-inner">
|
|
<table class="table table-striped table-bordered">
|
|
<tr>
|
|
<th>ID</th>
|
|
<th>Name</th>
|
|
<th>Status</th>
|
|
<th>Streams</th>
|
|
<th>Clients</th>
|
|
<th>Inbound</th>
|
|
<th>Outbound</th>
|
|
<th>HLS</th>
|
|
</tr>
|
|
<tr ng-repeat="vhost in vhosts">
|
|
<td><a href="javascript:void(0)" ng-click="gogogo('/vhosts/' + vhost.id)">{{vhost.id}}</a></td>
|
|
<td>{{vhost.name}}</td>
|
|
<td>{{vhost.enabled| sc_filter_enabled}}</td>
|
|
<td>{{vhost.streams}}个</td>
|
|
<td>{{vhost.clients}}人</td>
|
|
<td>{{vhost.kbps.recv_30s| sc_filter_bitrate_k}}</td>
|
|
<td>{{vhost.kbps.send_30s| sc_filter_bitrate_k}}</td>
|
|
<td>{{vhost.hls.enabled| sc_filter_enabled}}</td>
|
|
</tr>
|
|
</table>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div> |