Subversion Repositories wimsdev

Rev

Rev 6481 | Rev 7500 | Go to most recent revision | Details | Compare with Previous | Last modification | View Log | RSS feed

Rev Author Line No. Line
6312 bpr 1
!set tr=!words2items $i_translation_language
6315 bpr 2
<script type="text/javascript">
6425 bpr 3
/*<![CDATA[*/
6481 obado 4
jQuery(function($$) {
6315 bpr 5
   $$(document).ready(function(){
6447 obado 6
    $$(".content_lang").hide();
7
    $$(".button_lang").click(function () {
8
        $$(this).next(".content_lang").slideToggle();
6315 bpr 9
    });
10
  });
6481 obado 11
});
6447 obado 12
 
6425 bpr 13
/*]]>*/
6315 bpr 14
</script>
6312 bpr 15
 
6447 obado 16
 
6312 bpr 17
!for l_ in $tr
18
 !if $l_ isitemof $langlist
6447 obado 19
   <a class="wims_button button_lang">$name_prop ($(l_$l_))</a>
20
   <div class="content_lang" href="#">
6315 bpr 21
    $table_header
22
     $table_tr
23
      <th><label for="i_title_$l_">$wims_name_title ($(l_$l_))</label></th>
24
      <td>
25
        <input size="$size" name="i_title_$l_" id="i_title_$l_" value="$(i_title_$l_)" />
26
      </td>
27
     </tr>
28
     $table_tr
6594 bpr 29
      <th class="nowrap"><label for="i_keywords_$l_">$wims_name_Keywords ($(l_$l_))</label></th>
6315 bpr 30
      <td><input size="$size" name="i_keywords_$l_" id="i_keywords_$l_" value="$(i_keywords_$l_)" />
31
      </td>
32
     </tr>
6594 bpr 33
     $table_tr<th class="nowrap"><label for="i_description">$wims_name_Description ($(l_$l_))</label></th>
6315 bpr 34
     <td><input size="$size" name="i_description_$l_" id="i_description_$l_" value="$(i_description_$l_)" />
35
     </td>
36
    </tr>
37
     $table_tr
6594 bpr 38
       <th class="nowrap"><label for="i_translator_$l_">$wims_name_Translator ($(l_$l_))</label></th>
6315 bpr 39
      <td><input type="text" size="$size" name="i_translator_$l_" id="i_translator_$l_" value="$(i_translator_$l_)" />
40
      </td>
41
      </tr>
42
      $table_tr
6594 bpr 43
        <th class="nowrap"><label for="i_translator_address_$l_">$wims_name_tr_email ($(l_$l_))</label></th>
6315 bpr 44
        <td><input type="text" size="$size" name="i_translator_address_$l_" id="i_ranslator_address_$l_" value="$(i_translator_address_$l_)" />
45
        </td>
46
      </tr>
47
     </table>
48
    </div>
49
  !endif
6312 bpr 50
!next