Rev 12043 | Go to most recent revision | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed
Rev 12043 | Rev 12706 | ||
---|---|---|---|
Line 63... | Line 63... | ||
63 | !formend |
63 | !formend |
64 | !endif |
64 | !endif |
65 | !endif |
65 | !endif |
66 | 66 | ||
67 | !if $bcnt>0 |
67 | !if $bcnt>0 |
- | 68 | !set table_id=binfile_list |
|
- | 69 | !set table_class=sortable |
|
68 | $table_header |
70 | $table_header |
69 | <caption>$name_file</caption> |
71 | <caption>$name_file</caption> |
- | 72 | <thead> |
|
- | 73 | $table_hdtr |
|
70 |
|
74 | <th scope="col">$wims_name_name</th><th scope="col">$wims_name_action</th><th scope="col">$name_size</th> |
- | 75 | </tr> |
|
- | 76 | </thead> |
|
- | 77 | <tbody> |
|
71 | !for i=1 to $bcnt |
78 | !for i=1 to $bcnt |
72 | !set l=!line $i of $bfiles |
79 | !set l=!line $i of $bfiles |
73 | !distribute items $l into n_,s_ |
80 | !distribute items $l into n_,s_ |
74 | $table_tr |
81 | $table_tr |
75 | < |
82 | <td class="wims_fname">$n_</td> |
- | 83 | <td> |
|
76 | <a class="wims_button" target="wims_external" href="$devdir/$mod/$n_">$wims_name_Show</a> |
84 | <a class="wims_button" target="wims_external" href="$devdir/$mod/$n_">$wims_name_Show</a> |
77 | !set wims_ref_class=wims_button wims_warning |
85 | !set wims_ref_class=wims_button wims_warning |
78 | !href cmd=reply&bin_job=erase&fname=$n_ $wims_name_erase |
86 | !href cmd=reply&bin_job=erase&fname=$n_ $wims_name_erase |
79 | </td> |
87 | </td> |
80 | <td>$s_</td> |
88 | <td>$s_</td> |
81 | </tr> |
89 | </tr> |
82 | !next i |
90 | !next i |
- | 91 | </tbody> |
|
83 | $table_end |
92 | $table_end |
- | 93 | !read tablesort.phtml |
|
84 | !else |
94 | !else |
85 | <p>$name_nofile</p> |
95 | <p>$name_nofile</p> |
86 | !endif |
96 | !endif |
87 | - | ||
88 | - | ||
89 | 97 | ||
90 | !reset bin_job |
98 | !reset bin_job |
91 | - |