taron133
2020-10-26 aa8d874c8a3287d41d26566ae32b6ed8d4557ff9
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
<table summary="T" style="border:1px #666 solid;" width="100%" cellpadding="0" cellspacing="1">
<tr><td class="fixed" align="center" colspan="10"><b>{$NameTable}</b></td></tr>
 
<tr class="fixed" align="center">
{section name=sec loop=$ASU_CAB_NAMES}
    <td  style="text-size:small;FONT-WEIGHT: normal;">
        {$ASU_CAB_NAMES[sec]}
    </td>
{/section}
<td class="fixed">&nbsp;</td>
</tr>
 
{section name=sec loop=$GRID_RESULTS}
<tr>
{section name=sec2 loop=$GRID_RESULTS[sec]}
{if $smarty.section.sec2.rownum<10}
<td {if $smarty.section.sec2.rownum==1}style="" class="fixed"{else}style="" class="notfixed"{/if}align="center">
    {if $smarty.section.sec2.rownum==1}
        {$smarty.section.sec.rownum}
    {else}
        {$GRID_RESULTS[sec][sec2]}
    {/if}
</td>
{/if}
{/section}
 
<td width="3%" class="notfixed"><!--target="blank"-->
<a href="?form=7&amp;act=15&amp;act_adm=2&amp;id={$ID}&amp;id_per={$GRID_RESULTS[sec][0]}" title="edit"><img src="Icons/property.GIF" alt="edit" /></a>
</td>
</tr>
{/section}
 
</table>