Changes:
[vuplus_dvbapp-plugin] / webinterface / src / web-data / tpl / default / tplBouquetList.htm
1
2 <!-- tplBouquetList --> 
3                                                                         <table id="bouquetTable">
4                                                                                 {for bouquet in bouquets}
5                                                                                 <tr><td>
6                                                                                         <table>
7                                                                                                 <tr>
8                                                                                                         <td>
9                                                                                                                 <a target="_blank" onclick="return parentPin( '${bouquet.servicereference}' );" href="/web/services.m3u?bRef=${bouquet.servicereference}">
10                                                                                                                         <img src="/web-data/img/screen.png" title="Open ${bouquet.servicename} as Playlist" border="0">
11                                                                                                                 </a>
12                                                                                                         </td>                                                                   
13                                                                                                         <td>                                                                            
14                                                                                                                 <div class="sListSName">
15                                                                                                                         <a href="#" id="${bouquet.servicereference}" onclick="{ loadBouquet(this.id, this.innerHTML); }" class="sListSLink" title="Load Bouquet ${bouquet.servicename}">
16                                                                                                                                 ${bouquet.servicename}
17                                                                                                                         </a>
18                                                                                                                 </div>
19                                                                                                         </td>
20                                                                                                 </tr>
21                                                                                         </table>
22                                                                                 </td></tr>
23                                                                                 {forelse}
24                                                                                 <tr><td>
25                                                                                         <table><tr><td>No Bouquets to Display</td></tr></table>
26                                                                                 </td></tr>
27                                                                                 {/for}          
28                                                                         </table>
29 <!-- /tplBouquetList -->