Subversion Repositories wimsdev

Rev

Rev 9960 | Rev 10919 | Go to most recent revision | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 9960 Rev 10712
Line 1... Line 1...
1
!if $nblisttechvar=0
1
!if $nblisttechvar=0
2
        $name_notechvar
2
   $name_notechvar
3
!else
3
!else
4
        !if $tv_listlocal!=$empty
4
   !if $tv_listlocal!=$empty
5
                $table_header
5
      $table_header
6
                <caption>$name_listtechvarlocal</caption>
6
        <caption>$name_listtechvarlocal</caption>
7
                <thead>
7
        <thead>
8
                $table_hdtr
8
          $table_hdtr
9
                        <th>$name_name</th>
9
         <th>$name_name</th>
10
                        <th>$name_ltvalue</th>
10
         <th>$name_ltvalue</th>
11
                        <th>&nbsp;</th>
11
         <th>&nbsp;</th>
12
                </tr>
12
          </tr>
13
                </thead>
13
        </thead>
14
                <tbody>
14
        <tbody>
15
                !for k in $tv_listlocal
15
      !for k in $tv_listlocal
16
                        $table_tr
16
         $table_tr
17
                                !let don=!line $k of $tv_listtechvar
17
            !let don=!line $k of $tv_listtechvar
18
                                !let don2=!record $(don[3]) of wimshome/log/classes/$wims_class/.techvar
18
            !let don2=!record $(don[3]) of wimshome/log/classes/$wims_class/.techvar
19
                                !distribute line $don2 into name,val  
19
            !distribute line $don2 into name,val
20
                                <td>$name</td>
20
            <td>$name</td>
21
                                <td>$val</td>
21
            <td>$val</td>
22
                                <td>
22
            <td>
23
                                        !set wims_ref_class=wims_button
23
             !set wims_ref_class=wims_button
24
                                        !href cmd=reply&job=modifvar&techvar=$(don[3]) $name_modify
24
             !href cmd=reply&job=modifvar&techvar=$(don[3]) $wims_name_change
25
                                </td>
25
            </td>
26
                        </tr>
26
         </tr>
27
                !next k
27
      !next k
28
                </tbody>
28
       </tbody>
29
                $table_end
29
      $table_end
30
        !endif
30
   !endif
31
        !if $listglobal!=$empty
31
   !if $listglobal!=$empty
32
                $table_header
32
      $table_header
33
                <caption>$name_listtechvarglobal</caption>
33
        <caption>$name_listtechvarglobal</caption>
34
                <thead>
34
        <thead>
35
                $table_hdtr
35
          $table_hdtr
36
                        <th>$name_name</th>
36
            <th>$name_name</th>
37
                        <th>$name_value</th>
37
            <th>$name_value</th>
38
                </tr>
38
          </tr>
39
                </thead>
39
        </thead>
40
                <tbody>
40
        <tbody>
41
                !for k in $listglobal
41
      !for k in $listglobal
42
                        $table_tr
42
         $table_tr
43
                                !let don=!line $k of $tv_listtechvar
43
            !let don=!line $k of $tv_listtechvar
44
                                !let don=!record $(don[3]) of wimshome/log/classes/$(don[2])/.techvar
44
            !let don=!record $(don[3]) of wimshome/log/classes/$(don[2])/.techvar
45
                                !distribute line $don into name,val  
45
            !distribute line $don into name,val
46
                                <td>$name</td>
46
            <td>$name</td>
47
                                <td>$val</td>
47
            <td>$val</td>
48
                        </tr>
48
         </tr>
49
                !next k
49
      !next k
50
                </tbody>
50
       </tbody>
51
                $table_end
51
      $table_end
52
        !endif
52
   !endif
53
!endif
53
!endif