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