Code

5619ce35e017791c78c71df0169381cd252b7294
[gosa.git] / tests / ListTest / ObjectListViewport.tpl
1 <table class='ObjectListViewport' id='ObjectListViewport_{$OLV_List_Id}' cellspacing=0 cellpadding=0>
2   <tr>
3     <td>
4       <table class='ObjectListViewport_Table' id='ObjectListViewport_Table_{$OLV_List_Id}' cellpadding=0 cellspacing=0 >
5         <tr>
6           <td class='ObjectListViewport_TD_Header' id='ObjectListViewport_TD_Header_{$OLV_List_Id}'>
7             <table class='ObjectListViewport_Header_Table' id='ObjectListViewport_Header_Table_{$OLV_List_Id}'>
8               <tr>
9                 {foreach from=$OLV_Header key=key item=item}
10                   <td class='ObjectListViewport_Header_Cell' style='{$item.style}'>{$item.name}</td>
11                 {/foreach}
12               </tr>
13             </table>
14           </td>
15         </tr>
16         <tr>
17           <td class='ObjectListViewport_TD_Entries' id='ObjectListViewport_TD_Entries_{$OLV_List_Id}'>
18             <div class='ObjectListViewport_Entry_Cover' id='ObjectListViewport_Entry_Cover_{$OLV_List_Id}'>
19               <table class='ObjectListViewport_Entry_Table' id='ObjectListViewport_Entry_Table_{$OLV_List_Id}'>
20                 {foreach from=$OLV_Entries key=key item=item}
21                   <tr class="{$item.row.class}">
22                     {foreach from=$item.cols key=key2 item=item2}
23                       <td class='ObjectListViewport_Entry_Cell' style='{$item2.style1}'>
24                         <div style='{$item2.style2}'>
25                           {$item2.value}
26                         </div>
27                       </td>
28                     {/foreach}
29                   </tr>
30                 {/foreach}
31               </table>
32             </div>
33           </td>
34         </tr>
35         <tr>
36           <td class='ObjectListViewport_TD_Footer' id='ObjectListViewport_TD_Footer_{$OLV_List_Id}'>
37             <table class='ObjectListViewport_Footer_Table'>
38               <tr>
39                 <td class='ObjectListViewport_Footer_Cell' colspan='{$OLV_Num_Cols}'>{$OLV_Footer_Message}</td>
40               </tr>
41             </table>
42           </td>
43         </tr>
44       </table>
45     </td>
46   </tr>
47 </table>
48 <!--
49 // vim:tabstop=2:expandtab:shiftwidth=2:filetype=php:syntax:ruler:
50 -->