Subversion Repositories wimsdev

Rev

Rev 16950 | Blame | Compare with Previous | Last modification | View Log | RSS feed

  1. !if $datacnt<1
  2.   $name_warning_update
  3.   !exit
  4. !endif
  5.  
  6. !set table_id=TABLE_new_modules
  7. !set table_class=sortable
  8. !reset table_center
  9. $table_header
  10. <caption>$name_updatemodule
  11.   <a href="$w_/rss/modif.xml"><img src="gifs/rss.png" alt="rss"></a></caption>
  12. <thead>
  13.   $table_hdtr<th>$wims_name_date</th><th>$wims_name_Language</th>
  14.   <th>$wims_name_title</th><th>$wims_name_Description</th>
  15.   <th>$name_new</th></tr>
  16. </thead>
  17. <tbody>
  18. !for i=1 to $datacnt
  19.   !set l=!line $i of $data
  20.   !distribute words $l into d_,a_,v_
  21.   !set depr=!module deprecated $a_
  22.   !if $depr!=yes
  23.     !set la=!module language $a_
  24.     !set tit=!module title_$lang $a_
  25.     !set desc=!module description_$lang $a_
  26.     !if $tit=
  27.       !set tit=!module title $a_
  28.     !endif
  29.     !set cat=!module category $a_
  30.     !read category $cat
  31.     !if $desc=
  32.       !set desc=!module description $a_
  33.     !endif
  34.     $table_tr
  35.       <td class="wimscenter small">
  36.         !char 1 to 8 of $d_
  37.       </td><td class="wimscenter">$la
  38.         !module translation_language $a_
  39.       </td><td>
  40.         !set wims_ref_class=wims_$(cat)_item
  41.         !href target=wims_test module=$a_ $tit
  42.       </td><td>
  43.         $desc
  44.       </td><td class="wimscenter">$v_</td>
  45.     </tr>
  46.     !reset desc tit
  47.   !endif
  48. !next i
  49. </tbody>
  50. $table_end
  51. !read tablesort.phtml
  52.