Subversion Repositories wimsdev

Rev

Go to most recent revision | Details | Last modification | View Log | RSS feed

Rev Author Line No. Line
23 reyssat 1
!header
2
 
3
!read comsDir/exosDescription
4
 
5699 obado 5
<div class="intro_createqcm">
23 reyssat 6
  Ce module se donne pour but d'aider à la confection du fichier source d'un
7
  exercice simple au format OEF sous WIMS.
8
</div>
9
 
5764 bpr 10
<br/>
23 reyssat 11
 
5699 obado 12
 <table class="table1_createqcm">
23 reyssat 13
   <tr>
14
     <td>
15
       Trois types d'exercices OEF que que l'on peut confectionner:
16
     </td>
17
   </tr>
18
   <tr>
19
     <td>
20
       <ol>
5699 obado 21
         <li class="qcm">
23 reyssat 22
           OEF de type QCM  avec une liste de boutons à cocher
23
         </li>
5699 obado 24
         <li class="replibre">
23 reyssat 25
           OEF avec réponse libre à soumettre par l'utilisateur
26
         </li>
5699 obado 27
         <li class="combinatoire">
23 reyssat 28
           OEF combinant les deux types précédents
29
         </li>
30
        </ol>
31
     </td>
32
   </tr>
33
 </table>
5764 bpr 34
<hr/>
5699 obado 35
<div class="intro2_createqcm">
36
        Il est important de noter que ce module n'aide à créer que des exercices très
37
        élémentaires. Il a été plut&ocirc;t conçu pour offrir une interface de confection
38
        rapide d'exercices d'appoint.
39
</div>
5764 bpr 40
<hr/>
23 reyssat 41
 
42
!form new
5841 bpr 43
<input type="hidden" name="module" value="$module"/>
23 reyssat 44
 
5699 obado 45
<table class="table2_createqcm">
23 reyssat 46
  <tr>
5699 obado 47
    <td class="center">
5842 bpr 48
      <input type="radio" name="chexo" value="1" checked="checked"/>
23 reyssat 49
    </td>
50
    <td>
51
      <p>
52
      Sélectionner un type d'exercice à confectionner
53
      ou suivre pas à pas une démo,
5699 obado 54
      <select class="select_createqcm" name="exo">
23 reyssat 55
        !for i=1 to 6
5841 bpr 56
          <option value="$i"
23 reyssat 57
          !if $i=1
5838 bpr 58
            selected="selected"
23 reyssat 59
          !endif
5841 bpr 60
          >$(exosdesc[$i;])</option>
23 reyssat 61
        !next i
62
      </select>
63
       </p>
64
    </td>
5841 bpr 65
    <td class="center" rowspan="3">
66
      <input type="submit" value="Au travail"/>
23 reyssat 67
    </td>
68
  </tr>
69
  <tr>
5699 obado 70
    <td class="center">
5841 bpr 71
      <input type="radio" name="chexo" value="2"/>
23 reyssat 72
    </td>
73
    <td>
74
      <p>
75
        ou <b>modifier en mode brut</b> un code source (<tt>au format createqcm</tt>)
76
       </p>
77
    </td>
78
  </tr>
79
  <tr>
5699 obado 80
    <td class="center">
5841 bpr 81
      <input type="radio" name="chexo" value="3"/>
23 reyssat 82
    </td>
83
    <td >
84
      <p>
85
        ou encore <b>soumettre un fichier</b> (<tt>au format createqcm</tt>) existant
86
       </p>
87
    </td>
88
  </tr>
89
</table>
90
 
5927 bpr 91
 
92
!formend
5879 bpr 93
<hr/>
23 reyssat 94
 
95
!!href cmd=new&module=$module Aller au travail
96
!!.
97
 
98
!tail
99
 
5699 obado 100
 
101