Rev 10919 | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed
Rev 10919 | Rev 12488 | ||
---|---|---|---|
Line 2... | Line 2... | ||
2 | $name_notechvar |
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>$wims_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 | </tr> |
|
- | 27 | !next k |
|
- | 28 | </tbody> |
|
- | 29 | $table_end |
|
- | 30 | !endif |
|
- | 31 | !if $listglobal!=$empty |
|
- | 32 | $table_header |
|
- | 33 | <caption>$name_listtechvarglobal</caption> |
|
- | 34 | <thead> |
|
- | 35 | $table_hdtr |
|
- | 36 | <th>$wims_name_name</th> |
|
- | 37 | <th>$name_value</th> |
|
26 | </tr> |
38 | </tr> |
27 | !next k |
- | |
28 | </tbody> |
- | |
29 | $table_end |
- | |
30 | !endif |
- | |
31 | !if $listglobal!=$empty |
- | |
32 | $table_header |
- | |
33 | <caption>$name_listtechvarglobal</caption> |
- | |
34 | <thead> |
- | |
35 | $table_hdtr |
- | |
36 | <th>$wims_name_name</th> |
- | |
37 | <th>$name_value</th> |
- | |
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 |