Subversion Repositories wimsdev

Rev

Rev 12714 | Details | Compare with Previous | Last modification | View Log | RSS feed

Rev Author Line No. Line
4039 bpr 1
!read adm/class/classname.phtml $wims_classname\
4020 bpr 2
$wims_institutionname
3
 
16097 guerimand 4
 
5426 guerimand 5
!if $user isitemof $wims_connectedlogin and $wims_user=supervisor
12429 bpr 6
  !let name_job=!append word <span class="wims_connected" title="connected">$user</span> to $name_job
5224 guerimand 7
!endif
8
 
1479 bpr 9
!read adm/title.phtml 1\
4020 bpr 10
$classname\
1479 bpr 11
$livret_title\
12
$name_job
1319 guerimand 13
 
14
!if $error!=$empty
12429 bpr 15
  <div class="wims_msg alert">
16
  !read lang/msg.phtml.$moduclass_lang  $error
17
  </div>
18
  !exit
1319 guerimand 19
!endif
20
 
21
!if $livret_nbcomp==0
12429 bpr 22
  $name_no_competence
23
  !exit
1319 guerimand 24
!endif
9563 guerimand 25
!read proc/legend.proc legend
16097 guerimand 26
 
27
<div class="wims_skillbullet_desc">$livret_description</div>
28
 
9349 bpr 29
!reset table_center
1319 guerimand 30
$table_header
12714 bpr 31
<thead>
12429 bpr 32
$table_hdtr
1580 guerimand 33
  <th>$name_Competences / $name_n_Paliers</th>
12429 bpr 34
!for j=1 to $maxnbpalier
35
  <th valign="middle">$(name_ipalier)$j</th>
12714 bpr 36
!next j
12429 bpr 37
  </tr>
12714 bpr 38
</thead>
39
<tbody>
40
!for k=1 to $livret_nbcomp
41
  !if $(nbit_$k)>0 or $livret_showempty!=no
12429 bpr 42
    $table_tr
3095 guerimand 43
    <td>
44
     <b>$k</b> : $(title_$k)
45
    </td>
46
    !for j=1 to $(nbpalier_$k)
12394 bpr 47
      !let desc=!record $j of wimshome/log/classes/$wims_class/livret/.comp$k
48
      !let desc=!line 1 of $desc
49
      !read adm/class/colors $(l_$(k)_$(j)),livret
50
      <td style=$style_note>
12429 bpr 51
      $output_note
52
        <div class="wims_tooltip">
53
        !href cmd=reply&job=see&comp=$k&palier=$j $wims_name_detail
54
       <span class="wims_tooltiptext">$desc</span>
55
       </div>
12714 bpr 56
      </td>
3095 guerimand 57
    !next j
58
    !for j=$(nbpalier_$k)+1 to $maxnbpalier
9602 bpr 59
      <td>&nbsp;</td>
3095 guerimand 60
    !next j
12714 bpr 61
    </tr>
3095 guerimand 62
  !endif
12394 bpr 63
!next k
12714 bpr 64
</tbody>
5224 guerimand 65
$table_end